* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    background-color: #FFFFFF;
}

a {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.wrapper--small {
    max-width: 1150px;
}

.button {
    border: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 19.8px;
    height: 50px;
    min-width: 240px;
    max-width: 240px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background-color: #FF7A00;
    transition: all 0.3s;
    color: #ffffff;
    border-radius: 50px;
    cursor: pointer;
}

.button img,
.button svg {
    width: 20px;
    height: 16px;
}

.button:hover {
    background-color: #FF981E;
}

.button--blue {
    background-color: #1E266C;
}

.button--blue:hover {
    background-color: #3C448A;
}

.button--transparent {
    border: 2px solid #FF7A00;
    background-color: transparent;
    color: #FF7A00;
}

.button--transparent:hover {
    background-color: #FF981E;
    color: #FFFFFF;
    border-color: #FF981E;
}

.button-text-whatsapp {
    background-color: #25D366;

}

.title {
    font-size: 36px;
    font-weight: 900;
    line-height: 39.6px;
    text-align: center;
    color: #1E266C;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.input-wrapper label {
    display: none;
    top: 9px;
    left: 20px;
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    line-height: 15.4px;
    color: #FF3B30;
}

.input-wrapper .input--invalid + label {
    display: inline-block;
}

.input--text {
    width: 100%;
    max-width: 285px;
    height: 50px;
    padding: 17.5px 20px;
    border: 1px solid #1E266C0D;
    border-radius: 50px;
    background: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 15.4px;
    font-family: 'Gilroy', sans-serif;
    color: #1E266C;
}

.input--text.input--invalid {
    background: #FEEAE9;
    border: 1px solid #FF3B30;
    padding-top: 26px;
}

.input--text::placeholder {
    color: #8E93B6;
}

.input--text.input--invalid::placeholder {
    color: #1E266C;
    font-size: 14px;
    font-weight: 500;
    line-height: 15.4px;
}

.input--text:focus {
    outline: none;
    border: 1px solid #FF7A00;
}

.input--checkbox {
    display: none;
}

.input--checkbox + label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.input--checkbox + label:before {
    content: url("../themes/vahta/assets/img/icons/checkbox.svg");
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}

.input--checkbox:checked + label:before {
    content: url("../themes/vahta/assets/img/icons/checkbox--checked.svg");
}

.vacancies__range-slider {
    background: #FF7A001A !important;
}

.noUi-target {
    border: 0 !important;
    border-radius: 0 !important;
}

.noUi-horizontal {
    height: 10px !important;
}

.noUi-horizontal .noUi-handle {
    height: 10px !important;
    top: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
    background: #FF7A00 !important;
    width: 15px !important;
    border-radius: 0 !important;
    right: -5px !important;
}

.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
    display: none;
}

.noUi-connects {
    border-radius: 0 !important;
}

.noUi-connect {
    background: #FF7A00 !important;
}

.noUi-tooltip {
    position: relative;
    background: #FF7A00 !important;
    border: none !important;
    border-radius: 0 !important;
    bottom: 180% !important;
    font-size: 14px;
    line-height: 15.4px;
    color: #FFFFFF !important;
}

.noUi-tooltip:after {
    position: absolute;
    content: url("../themes/vahta/assets/img/icons/triangle.svg");
    width: 10px;
    height: 5px;
    left: 40%;
    bottom: -5px;
}

@media (max-width: 1220px) {
    .wrapper {
        margin: 0 10px;
    }
}

@media (max-width: 1170px) {
    .wrapper--small {
        margin: 0 10px;
    }
}

@media (max-width: 790px) {
    .title {
        font-size: 32px;
        font-weight: 900;
        line-height: 35.2px;
    }
}
