.select-container {
    background-color: #F6F6F6;
    padding: 40px 0 120px;
}

.vehicle-shipping-form {
    display: none;
}

.page-form-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
    text-align: center;
    margin-top: 32px;
}

.select-vehicle {
    max-width: 1212px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.select-vehicle__item {
    padding: 32px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(63, 164, 32, 0.50);
    background: rgba(63, 164, 32, 0.03);
    cursor: pointer;
    transition: var(--trans);
    position: relative;
}

.select-vehicle__item:hover {
    background: var(--light-green-background);
}

.select-vehicle__item::before {
    content: '';
    width: 32px;
    height: 32px;
    position: absolute;
    left: -2px;
    bottom: -2px;
    border-left: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    border-bottom-left-radius: 4px;
}

.select_vehicle_title {
    font-size: 20px;
    font-weight: 550;
    line-height: 140%;
    text-transform: capitalize;
    margin-top: 12px;
}


.step-form .step-block {
    display: none;
}

.step-form .step-block:first-of-type {
    display: block;
}

.step-form .step-block.hidden {
    display: none;
}

.step-form .step-block.visible {
    display: block;
}

.step-box {
    display: flex;
}

.step-left {
    width: 224px;
    margin-right: 120px;
}

.step-content {
    width: 992px;
    padding: 40px 40px 48px;
    border-radius: 8px;
    background: #FFF;
}

.btn-back {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #0F1B24;
    cursor: pointer;
}

.btn-back img {
    margin-right: 13px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.vehicle-step-nav {
    margin-top: 64px;
}

.vehicle-step-nav__item {
    color: #ADADAD;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    position: relative;

}

.vehicle-step-nav__item:last-child {
    margin-bottom: 0;
}

.vehicle-step-nav__item.active {
    font-weight: 550;
    color: #3FA420;

}

.vehicle-step-nav__item span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 100%;
    border-radius: 50%;
    border: 1px solid #CECECE;
    background: #F9FCF8;
    margin-right: 16px;
    font-weight: 400;
    z-index: 1;
}

.vehicle-step-nav__item::before {
    content: '';
    height: 34px;
    width: 1px;
    background-image: linear-gradient(#BDEFA7 53%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 2px 8px;
    background-repeat: repeat-y;
    position: absolute;
    bottom: -34px;
    left: 19.5px;
}

.vehicle-step-nav__item:last-child::before {
    display: none;
}

.vehicle-step-nav__item.active span {
    border: 1px solid #3FA420;
}

.vehicle-step-nav__item.completed {
    color: #0F1B24;
}

.vehicle-step-nav__item.completed span {
    border: 1px solid rgba(63, 164, 32, 0.50);
    font-size: 0;
    position: relative;
}

.vehicle-step-nav__item.completed span::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 18.2857L17.7143 26L29.7143 14" stroke="%233FA420" stroke-opacity="0.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.step-of {
    color: #ADADAD;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 12px;
}

.step-content-top h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
}


.label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 4px;
}


.inp {
    height: 52px;
    line-height: 1;
    width: 100%;
    padding: 16px;
    border-radius: 2px;
    border: 1px solid #CECECE;
    background: #FFFFFF;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    color: #0F1B24;
    font-family: var(--font-primary);
}

.inp::placeholder {
    color: #ADADAD;
}

.inp::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.inp::-webkit-outer-spin-button,
.inp::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}


.selects-box {
    display: flex;
    justify-content: space-between;
}

.selects-box .select-wrapp {
    width: calc(33.33% - 16px * 2 / 3);
}

.select-wrapp {
    position: relative;
}

.inp-wrapp {
    position: relative;
    width: 100%;
}

.temp-container .temp-inputs {
    margin-top: 24px;
}





.another-vehicle {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #3FA420;
    font-size: 16px;
    font-weight: 550;
    line-height: 140%;
    border: none;
    background: none;
    outline: none;
    padding: 16px 0px;
    margin: 16px 0px;
    position: relative;
    transition: var(--trans);
}

.another-vehicle:hover {
    opacity: 0.8;
}

.another-vehicle svg {
    margin-right: 11px;
}

.step-buttons .btn-next {
    display: block;
    min-width: 210px;
    margin-top: 24px;
}

.btn-next,
.btn-submit {
    min-width: 210px;
}

.step-buttons {
    display: block;
    margin-top: 40px;
}



.check-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 115%;
    margin-bottom: 24px;
}

.check-wrapper {
    margin-top: 32px;
}

.check-box .checkbox-item {
    margin-bottom: 20px;
}

.check-box .checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-item input[type="radio"] {
    visibility: hidden;
    opacity: 0;
    position: absolute;
}

.checkbox-item label {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    padding-left: 24px;
}

.checkbox-item label::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 1px solid #CECECE;
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
    border-radius: 50%;
    line-height: 1;
}

.checkbox-item label::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #3FA420;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 4px);
    left: 4px;
    display: none;
    line-height: 1;
}

.checkbox-item input:checked+label::before {
    border: 1px solid #3FA420;
}

.checkbox-item input:checked+label::after {
    display: block;
}



.inp-item {
    margin-bottom: 30px;
}

.precise-sizes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 24px;
}

.inputs-size {
    display: flex;
    justify-content: space-between;
    margin: 32px 0;
}

.inputs-size__item {
    width: calc(25% - (16px * 3) / 4);
    display: flex;
    flex-direction: column;
}

.inputs-size__wrapp {
    position: relative;
}

.inputs-size__wrapp input::-webkit-outer-spin-button,
.inputs-size__wrapp input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.select-size-wrapp {
    position: absolute;
    top: 0;
    right: 0;
    border-left: 1px solid #E1E3EC;
    height: 100%;
    display: flex;
    align-items: center;
    width: 76px;
}

.precise-sizes .select-inp-select2 .select2-choice {
    display: flex;
    align-items: center;
    padding: 16px;
    padding: 0 36px 0 16px;
    color: #0F1B24;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    height: 100%;
    border: none !important;
}

.precise-sizes .select-inp-select2 .select2-choice::after {
    right: 16px;
}

.select-size-wrapp .select2-container .select2-choice>.select2-chosen {
    margin: 0;
    width: 22px;
}

.select-size-wrapp .select2-container {
    height: calc(100% - 2px);
}


.datepicker-wrapper {
    position: absolute;
    top: calc(100% + 12px);
    left: 0px;
    z-index: 2;
}

.ui-datepicker table {
    border-collapse: separate;
    border-spacing: 5px;
}

.ui-datepicker-calendar {
    width: 100%;
}

.ui-datepicker {
    padding: 16px 24px;
}

.ui-widget.ui-widget-content {
    width: 312px;
    border: none;
    background: #FFFFFF;
}

.ui-widget-header {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #1F2428;
    background: none;
    border: none;
}

.ui-datepicker .ui-datepicker-header {
    padding: 0;
    position: relative;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    color: #C6C3D2;
}

.ui-datepicker-prev.ui-state-disabled {
    opacity: .35;
    cursor: default !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.ui-datepicker th {
    padding: 12px 0px;
    font-size: 12px;
    color: rgba(27, 27, 28, 0.50);
    font-weight: 550;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 30px;
    border-radius: 50%;
}

.ui-datepicker td span,
.ui-datepicker td a {
    padding: 0;
}

.ui-datepicker-current-day {
    background: #3FA420;
    border-radius: 50%;
}

.ui-datepicker-current-day a {
    color: #fff !important;
}

.ui-datepicker td {
    width: 30px;
}

.ui-widget-header .ui-icon {
    width: 7px;
    height: 10px;
    background-image: url(../images/shipping/date-arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    position: absolute;
    margin-left: 0;
    left: auto;
    right: 10px;
    font-size: 0;
    /* top: calc(50% - 6.5px); */
    top: calc(50% - 1.5px);
}

.ui-datepicker .ui-datepicker-prev span {
    left: 10px;
    transform: rotate(180deg);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    width: 6.5px;
    height: 100%;
    cursor: pointer;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    border: none;
    background: none;
    border-width: 0;
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
    top: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 2px;
}

.temp-inputs {
    display: none;
}

.temp-container .temp-inputs {
    display: block;
    margin-top: 25px;
}


.temp-container .temp-inputs:nth-child(n+2) {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #BDEFA7;
}

.remove-btn {
    width: 87px;
    margin-left: auto;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    padding-left: 25px;
    margin-bottom: 32px;
}

.remove-btn::before {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    top: calc(50% - 7px);
    left: 0px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.99993 8.17832L11.7141 12.8925C11.8713 13.0443 12.0818 13.1283 12.3003 13.1264C12.5188 13.1245 12.7278 13.0369 12.8823 12.8824C13.0368 12.7278 13.1244 12.5188 13.1263 12.3003C13.1282 12.0818 13.0442 11.8713 12.8924 11.7142L8.17827 6.99998L12.8924 2.2858C13.0442 2.12863 13.1282 1.91813 13.1263 1.69963C13.1244 1.48113 13.0368 1.27212 12.8823 1.11761C12.7278 0.963107 12.5188 0.875465 12.3003 0.873567C12.0818 0.871668 11.8713 0.955664 11.7141 1.10746L6.99993 5.82165L2.28577 1.10746C2.12789 0.959416 1.91861 0.8786 1.70221 0.882114C1.48581 0.885628 1.27926 0.973196 1.12628 1.12629C0.97329 1.27939 0.885867 1.48599 0.882506 1.7024C0.879145 1.9188 0.96011 2.12803 1.10827 2.2858L5.8216 6.99998L1.10743 11.7142C1.02784 11.791 0.964357 11.883 0.920683 11.9847C0.877009 12.0863 0.85402 12.1957 0.853059 12.3063C0.852097 12.417 0.873182 12.5267 0.915083 12.6291C0.956983 12.7315 1.01886 12.8246 1.0971 12.9028C1.17535 12.9811 1.26839 13.043 1.37081 13.0849C1.47322 13.1268 1.58295 13.1478 1.6936 13.1469C1.80425 13.1459 1.9136 13.1229 2.01527 13.0793C2.11694 13.0356 2.20889 12.9721 2.28577 12.8925L6.99993 8.17832Z" fill="%230A0A0B"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
}

.temp-container .temp-inputs:nth-child(1) .remove-btn {
    display: none;
}


.select-non-arrow:after {
    display: none;
}

.datepicker-inp {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.datepicker-inp.error-text+.datepicker .ui-widget.ui-widget-content,
.datepicker-inp.error-text+.datepicker-flex .ui-widget.ui-widget-content {
    border: 1px solid red;
}

.datepicker-availiable {
    display: flex;
    flex-direction: column;
    background: #fff;
    /* margin-top: -20px; */
    position: relative;
    z-index: 3;
}

.datepicker-availiable p {
    max-width: 100%;
    padding: 24px 0px 16px;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    color: #000000;
    border-bottom: 1px solid #BDEFA7;
}

.datepicker-flex .ui-widget.ui-widget-content {
    border-bottom: 1px solid #F2F6FC;
}

.datepicker,
.datepicker-flex {
    border-radius: 2px;
    border: 1px solid #BDEFA7;
    background: #FFF;
}

.info {
    position: relative;
    cursor: pointer;
    margin-left: 2px;
    margin-top: -2px;
}

.lastInp-wrapper .info {
    margin-top: -4px;
}

.info-zip img {
    width: 9px;
    height: 9px;
}

.info:hover .zip-dropdown {
    visibility: visible;
}

.info span {
    visibility: hidden;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 171px;
    height: 49px;
    font-size: 13px;
    line-height: 15px;
    padding: 0px 5px 0px 9px;
    background: #fff;
    border: 1px solid #E6E7E8;
    border-radius: 4px;
    font-weight: 300;
    color: #828282;
    z-index: 2;
}

.info-zip span {
    top: -60px;
    left: -44px;
}

.info-zip span::before {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 30px;
    width: 35px;
    height: 15px;
    background: url(../images/info-triangle.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.info-right span {
    top: -17px;
    left: 30px;
}

.info-right span::before {
    content: '';
    position: absolute;
    top: 7px;
    left: -9px;
    height: 35px;
    width: 15px;
    background: url(../images/info-triangle-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.info-active:hover .zip-dropdown,
.info-active .zip-dropdown {
    visibility: visible;
}

.info-difference:hover .zip-dropdown,
.info-difference .long-distance {
    visibility: visible;
}






.info-wrapp {
    position: relative;
}

.info-right {
    position: absolute;
    right: 16px;
    top: calc(50% - 6px);
    cursor: pointer;
    z-index: 2;
}

.info-right span {
    visibility: hidden;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 171px;
    height: 50px;
    font-size: 13px;
    line-height: 15px;
    padding: 0px 5px 0px 9px;
    background: #fff;
    border: 1px solid #E6E7E8;
    border-radius: 4px;
    font-weight: 300;
    color: #1F2428;
    top: calc(50% - 27px);
    right: 26px;
    left: auto;
}

.info-right span::before,
.info-active-zip .error-zip::before {
    content: '';
    position: absolute;
    top: 7px;
    right: -9px;
    left: auto;
    height: 35px;
    width: 15px;
    background: url(../images/info-triangle-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: rotate(180deg);
}

.info:hover .zip-dropdown {
    visibility: visible;
}

.info-active:hover .zip-dropdown,
.info-active .zip-dropdown {
    visibility: visible;
}

.info-right .error-zip {
    display: none;
    width: 200px;
    font-size: 12px;
}

.info-active-zip .error-zip {
    display: flex;
}

.info-active .error-zip {
    visibility: visible;
}



#ui-datepicker-div {
    display: none;
}

.logistics-paragraphs .hide {
    display: none;
}

.paragraphs-more {
    cursor: pointer;
    color: #EFFCE9;
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: .5em .5em .5em .7em;
    font-size: 100%;
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
}

.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: 0;
}

.ui-menu .ui-menu {
    position: absolute;
}

.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
    /* support: IE10, see #8844 */
    list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px .4em;
}

.ui-menu .ui-menu-divider {
    margin: 5px 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
    margin: -1px;
}

.ui-menu-icons {
    position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
    padding-left: 2em;
}

.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: .2em;
    margin: auto 0;
}

.ui-menu .ui-menu-icon {
    left: auto;
    right: 0;
}

.ui-button {
    padding: .4em 1em;
    display: inline-block;
    position: relative;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Support: IE <= 11 */
    overflow: visible;
}

.ui-selectable {
    -ms-touch-action: none;
    touch-action: none;
}

.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted black;
}

.ui-selectmenu-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.ui-selectmenu-menu .ui-menu {
    overflow: auto;
    overflow-x: hidden;
    padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.5;
    padding: 2px 0.4em;
    margin: 0.5em 0 0 0;
    height: auto;
    border: 0;
}

.ui-selectmenu-open {
    display: block;
}

.ui-selectmenu-text {
    display: block;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
    text-align: left;
    white-space: nowrap;
    width: 14em;
}

.ui-selectmenu-icon.ui-icon {
    float: right;
    margin-top: 0;
}

.ui-autocomplete {
    width: 385px !important;
    z-index: 2;
    padding: 0px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 4px 25px rgba(105, 114, 132, 0.2);
    box-shadow: 0px 4px 25px rgba(105, 114, 132, 0.2);
}

.ui-menu .ui-menu-item-wrapper {
    padding: 10px 20px;
    color: #313131;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}

.ui-menu .ui-menu-item .ui-state-active {
    background-color: #EFFCE9;
    border: 1px solid #EFFCE9;
    color: #FFF;
}

.ui-menu-item {
    border-bottom: 1px solid #E6E7E8;
}

.ui-menu-item:last-child {
    border-bottom: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    color: rgba(27, 27, 28, 0.50);
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    color: #C6C6C6;
}

.select-other {
    display: flex;
    position: relative;
}

.select-other__arrow {
    position: absolute;
    top: 7px;
    right: 5px;
    z-index: 2;
    padding: 8px;
    cursor: pointer;
}

.select-other__arrow img {
    max-width: 22px;
    height: auto;
}

.select-other .inp::placeholder {
    color: #828282;
    font-weight: 400;
}

.select-inp.hide,
.select-other.hide {
    display: none;
}

.select-inp {
    width: 100%;
    cursor: pointer;
}

.select-other.select-inp:after {
    display: none;
}

.select-inp select {
    padding: 10px 19px;
    line-height: 1.4;
}

.select-inp-select2 .select-inp {
    padding: 0;
    border: none !important;
}

.select-inp-select2 .select-inp:after {
    display: none;
}

.select-inp-select2 .select2-choice {
    height: 52px;
    height: 100%;
    padding: 18px 16px 16px;
    border: 1px solid #CECECE !important;
    border-radius: 2px;
    background: #FFF;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    color: #1F2428;
    display: flex;
    align-items: center;
    font-weight: var(--font-primary);
    line-height: 1;
    position: relative;
}

.select-inp-select2 .select2-choice::after {
    content: '';
    width: 18px;
    height: 9px;
    background-image: url('data:image/svg+xml,<svg width="18" height="9" viewBox="0 0 18 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17 1L9 8L1 1" stroke="%230F1B24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 21px;
    right: 21px;
    pointer-events: none;
    transition: var(--trans);
}

.error-text .select2-choice {
    border: 1px solid red !important;
}

.select-inp-select2 .select2-dropdown-open .select2-choice::after {
    transform: rotate(-180deg);
}

.select2-container .select2-choice .select2-arrow {
    display: none;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    box-shadow: none;
}

.select2-drop {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    box-shadow: 0px 4px 25px rgba(105, 114, 132, 0.2);
    margin-top: 4px;
    border: 1px solid #E6E7E8;
}

.select2-results .select2-highlighted {
    background-color: #EFFCE9;
}

.select2-search {
    padding: 4px;
}

.select2-search input {
    background: none !important;
    padding: 6px 10px;
    outline: none;
    border-radius: 4px;
    border: 1px solid #E6E7E8;
    font-weight: 600;
    font-size: 14px;
    color: #313131;
}

.select2-results {
    margin: 0;
    padding: 0;
    text-align: center;
    max-height: 290px;
}

.select2-results .select2-result-label {
    font-size: 14px;
    line-height: 17px;
    color: #313131;
    font-weight: 400;
    padding: 10px;
    border-bottom: 1px solid #E6E7E8;
}

.select2-results .select2-disabled {
    background: transparent;
}

.select2-results .select2-disabled .select2-result-label {
    display: none;
}

.select2-no-results {
    padding: 10px;
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    background: none;
    border: none;
    box-shadow: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border: none;
}

.show_select_load .select-inp {
    opacity: 0.5;
    pointer-events: none;
}

.show_select_load::before {
    content: '';
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    padding: 10px;
    border: 3px solid #f5f5f5;
    border-right-color: #3FA420;
    border-radius: 50%;
    -webkit-animation: rotate 0.7s infinite linear;
    z-index: 1;
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

.show_inp_load input {
    opacity: 0.3;
}

.show_inp_load::before {
    content: '';
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    padding: 10px;
    border: 3px solid var(--green);
    border-right-color: #EFFCE9;
    border-radius: 50%;
    -webkit-animation: rotate 0.7s infinite linear;
    z-index: 1;
}

.validation_fail {
    color: red;
    border: 1px solid red;
}

.validation_fail::placeholder {
    color: red;
}

.btn-form {
    width: 264px;
    font-size: 16px;
}

.btn-form:not(:disabled):hover {
    opacity: 0.8;
}



.move-wrapp {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.move-wrapp .move-input {
    width: calc(50% - 8px);
}

.error-hint {
    color: #F90000;
    font-size: 12px;
    font-weight: 550;
    line-height: 150%;
    border: none !important;
    position: absolute;
    bottom: -18px;
    left: 0;
}

.select-inp.hide,
.select-other.hide,
.select-inp-select2.hide {
    display: none;
}


.pac-logo:after {
    background-image: none !important;
    height: 0px;
    content: none;
    display: none;
}

.pac-container {
    -webkit-box-shadow: 0px 4px 25px rgba(105, 114, 132, 0.2);
    box-shadow: 0px 4px 25px rgba(105, 114, 132, 0.2);
    margin-top: 3px;
    border-radius: 4px;
    border-top: none;
}

.pac-item {
    font-size: 13px;
    padding: 4px 10px;
    cursor: pointer;
}

.pac-item-query {
    font-size: 14px;
    padding-right: 4px;
}

.pac-icon {
    background-image: url(../images/shipping/location.svg) !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pac-icon {
    margin-top: 5px;
    margin-right: 8px;
}


.step-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 12px 0 24px;
}


.date-selected-block {
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
    color: #1F2428;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    height: 0;
}

.date-selected-block.show {
    visibility: visible;
    margin-top: 24px;
    height: auto;
}

.date-selected {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 8px;
}

.date-selected__date {
    margin-left: 10px;
    margin-right: 16px;
    font-weight: 600;
}

.choice-date-error {
    width: 100%;
    color: red;
}

.check-box-date {
    position: relative;
}



.checkbox-permission {
    display: flex;
    position: relative;
    margin-top: 32px;
    max-width: 100%;
}

.checkbox-permission input[type="checkbox"] {
    opacity: 0;
    height: 0;
    width: 0;
    position: absolute;
}

.checkbox-permission label {
    padding-left: 28px;
    position: relative;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #0F1B24;
    border: 1px solid transparent;
}

.checkbox-permission label a {
    color: #0F1B24;
    text-underline-offset: 3px;
}

.checkbox-permission label::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #CECECE;
    border-radius: 2px;
    position: absolute;
    top: 2px;
    left: 0px;
    cursor: pointer;
}

.checkbox-permission label::after {
    display: none;
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.07031 7.14286L6.92746 11L12.9275 5" stroke="%233FA420" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 2px;
    left: 0;
}

.checkbox-permission input.error-text+label {
    border: 1px solid red;
}

.checkbox-permission input:checked+label::after {
    display: block;
}

.checkbox-permission input:checked+label::after {
    display: block;
}

.checkbox-permission input:checked+label::before {
    border: 1px solid #3DAB40;
}


.form-thank {
    background-color: #F6F6F6;
}

.form-thank-main {
    padding: 120px 0;
    min-height: 744px;
    text-align: center;
}

.form-thank__title {
    font-size: 72px;
    font-weight: 400;
    line-height: 120%;
}

.form-thank__title span {
    color: #3FA420;
}

.form-thank__text {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-top: 24px;
}

.bubble-ring {
    position: relative;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

.bubble-ring span:nth-child(1) {
    --i: 0;
}

.bubble-ring span:nth-child(2) {
    --i: 1;
}

.bubble-ring span:nth-child(3) {
    --i: 2;
}

.bubble-ring span:nth-child(4) {
    --i: 3;
}

.bubble-ring span:nth-child(5) {
    --i: 4;
}

.bubble-ring span:nth-child(6) {
    --i: 5;
}

.bubble-ring span:nth-child(7) {
    --i: 6;
}

.bubble-ring span:nth-child(8) {
    --i: 7;
}

.bubble-ring span:nth-child(9) {
    --i: 8;
}

.bubble-ring span:nth-child(10) {
    --i: 9;
}

.bubble-ring span:nth-child(11) {
    --i: 10;
}

.bubble-ring span {
    position: absolute;
    background: #3FA420;
    border-radius: 50%;
    left: calc(50px + 40px * cos(var(--i) * 1turn / 11));
    top: calc(50px + 40px * sin(var(--i) * 1turn / 11));
    transform: translate(-50%, -50%);
    width: 2.6px;
    height: 2.6px;
    animation: size-wave 1.4s infinite ease-in-out;
    animation-delay: calc((11 - var(--i)) * -0.13s);
}

@keyframes size-wave {

    0%,
    100% {
        width: 2.6px;
        height: 2.6px;
    }

    50% {
        width: 14.2px;
        height: 14.2px;
    }
}

.form-loading-list {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-loading-list__item {
    display: none;
    margin-top: 24px;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    position: absolute;
    bottom: -48px;
    left: 0;
    right: 0;
    transition: var(--trans);
}

.form-loading-list__item.active {
    position: relative;
    top: 0;
    left: 0;
}

.form-loading-list__item.active::before {
    content: '';
    width: 18px;
    height: 12px;
    background-image: url(../images/shipping/check-mark.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 10px;
    right: -26px;
}

.form-processing {
    margin-top: calc(80px - 24px);
}

.form-processing-btn {
    margin-top: 80px;
}

.social-block {
    padding: 40px 0;
    background-color: #DCF7D0;
}

.social-block__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.social-block-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-block-content {
    width: 914px;
}

.social-block-items {
    display: flex;
    margin-top: 32px;
}

.social-block__item {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #3FA420;
    text-decoration: none;
    margin-right: 16px;
    line-height: 0;
    transition: var(--trans);
}

.social-block__item:hover {
    border: 1px solid var(--green-dark);
}

.social-block__item svg {
    width: 100%;
    height: auto;
    fill: #3FA420;
    transition: var(--trans);
}

.social-block__item:hover svg {
    fill: var(--green-dark);
}




@media screen and (max-width: 1439px) {
    .step-left {
        margin-right: 0;
    }

    .step-box {
        justify-content: space-between;
    }

    .step-content {
        width: 900px;
    }

    .social-block-content {
        width: 720px;
    }
}

@media screen and (max-width: 1199px) {
    .step-content {
        width: 715px;
    }

    .form-thank__title {
        font-size: 60px;
    }

    .social-block-content {
        width: 520px;
    }
}

@media screen and (max-width: 1023px) {
    .select-vehicle {
        gap: 16px;
    }

    .step-box {
        flex-direction: column;
    }

    .step-content {
        width: 100%;
    }

    .vehicle-step-nav {
        margin-top: 24px;
        margin-bottom: 40px;
    }

    .step-content-top h2 {
        font-size: 24px;
        line-height: 130%;
    }

    .step-content {
        padding: 32px 20px 48px;
    }


    .step-left {
        width: 100%;
    }

    .vehicle-step-nav {
        display: flex;
    }

    .vehicle-step-nav__item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-right: 40px;
        margin-bottom: 0;
    }

    .vehicle-step-nav__item span {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .vehicle-step-nav__item::before {
        height: 1px;
        width: calc(100% + 40px);
        background-image: linear-gradient(to right, #BDEFA7 53%, rgba(255, 255, 255, 0) 0%);
        background-size: 8px 2px;
        background-repeat: repeat-x;
        position: absolute;
        left: 20px;
        top: 20px;
    }

    .form-thank-main {
        padding: 100px 0;
        min-height: 615px;
    }

    .form-thank__title {
        font-size: 48px;
    }

    .form-thank__text {
        font-size: 18px;
        line-height: 150%;
        max-width: 384px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 16px;
    }

    .social-block__img img {
        max-width: 240px;
    }

    .social-block-content {
        width: 440px;
    }

    .form-processing {
        margin-top: calc(40px - 24px);
    }

    .form-processing-btn {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .select-vehicle {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-form-title {
        text-align: left;
    }

    .selects-box .select-wrapp {
        width: calc(33.33% - 10px * 2 / 3);
    }

    .inputs-size__item {
        width: calc(50% - (10px * 3) / 4);
    }

    .precise-sizes {
        gap: 12px;
    }

    .move-wrapp .move-input {
        width: calc(50% - 4px);
    }

    .form-thank-main {
        padding: 64px 0;
    }

    .social-block-content {
        width: 300px;
    }

    .social-block__img img {
        max-width: 210px;
    }


}

@media screen and (max-width: 574px) {
    .select_vehicle_title {
        max-width: 100%;
        font-size: 18px;
    }

    .select-vehicle__item {
        padding: 24px 12px;
    }

    .select-container {
        padding: 24px 0 64px;
    }

    .page-form-title {
        font-size: 28px;
        margin-top: 40px;
    }

    .select-vehicle__item svg {
        max-width: 56px;
        height: auto;
    }

    .vehicle-step-nav__item span {
        font-size: 14px;
        width: 24px;
        height: 24px;
    }

    .vehicle-step-nav__item {
        font-size: 14px;
        line-height: 140%;
        margin-right: 24px;
        max-width: 75px;
    }

    .vehicle-step-nav__item::before {
        width: calc(100% + 24px);
        top: 12px;
    }

    .selects-box,
    .move-wrapp {
        flex-direction: column;
        gap: 24px;
    }

    .inp-item {
        margin-bottom: 24px;
    }

    .selects-box .select-wrapp,
    .move-wrapp .move-input {
        width: 100%;
    }

    .social-block-wrapper {
        flex-direction: column;
    }

    .form-thank__title {
        font-size: 36px;
    }

    .form-loading-list__item {
        font-size: 20px;
    }

    .form-loading-list__item {
        margin-top: 16px;
    }

    .form-processing {
        margin-top: calc(40px - 16px);
    }

    .social-block__img img {
        max-width: 240px;
    }

    .social-block-content {
        width: 100%;
        margin-top: 32px;
    }

    .form-thank-main {
        min-height: 545px;
    }

    .temporarily-popup-verification {
        padding-bottom: 0;
    }

    .temporarily-popup-verification .temporarily-popup-wrapper {
        margin-bottom: 0;
        width: 100%;
        padding: 80px 20px;
    }

    .popup-verification-title {
        font-size: 24px;
        margin: 24px 0 16px;
    }

    .verification-code-container {
        margin: 24px 0;
    }
}

@media screen and (max-width: 410px) {}

@media screen and (max-width: 359px) {
    .select-vehicle {
        grid-template-columns: repeat(1, 1fr);
    }

    .selects-box,
    .move-wrapp {
        gap: 16px;
    }

    .check-wrapper {
        margin-top: 24px;
    }

    .check-title {
        margin-bottom: 16px;
    }

    .datepicker-wrapper {
        left: -20px;
    }

    .ui-widget.ui-widget-content {
        width: 290px;
    }

    .ui-datepicker {
        padding: 12px 13px;
    }

    .step-subtitle {
        font-size: 14px;
    }

    .inputs-size__item {
        width: 100%;
    }

    .social-block__title {
        font-size: 28px;
    }
}