.btn__save_add.btn-blue:disabled, .modal-save-changes.disabled {
    cursor: not-allowed;
}

.get-started {
    padding-right: 128px;
    padding-left: 128px;
    .onboarding-form .login-form-title h1 {
      line-height: 62px;
    }

    .login-form-title {
      margin-bottom: 67px;
    }

    .my-login-form span {
      margin-bottom: unset;
    }

    button.btn-primary {
      margin-bottom: 0px;
      margin-top: 67px;
      border-radius: 12px;
      padding: 13px 71px;
      line-height: 24px;
      min-height: 52px;
      font-size: 18px;
    }

    .select__title {
      padding-top: 10px;
      padding-bottom: 10px;
    }
}

/* LinkedIn Parsing Styles */

.onboarding-form__linkedin {
    font-family: 'Poppins';
    .onboarding__error {
        margin-top: 0;
        display: none !important;
    }
    .onboarding__error.active {
        display: block !important;
    }
    .linkedin-note {
        width: 100%;
        background: #E2EAFF;
        border-radius: 8px;
        text-align: center;
        padding: 5px;
    }
    .linkedin-note-span {
        all: initial;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        line-height: 26px;
        margin-inline: auto;
        color: #6C7593;
    }
    btn .btn-blue {
        width: auto !important;
        padding: 13px 71px;
    }
    .onboarding-form.login-input {
        height: 52px !important;
        max-width: none !important;
        width: 100%;
    }
    .login-input {
        max-width: none !important;
        width: 100%;
    }
    .my-login-form span {
        margin-bottom: 0px !important;
    }
    .onboarding__profile-connect_continue {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: full;
        margin-inline: auto;
        gap: 14px;
        margin-bottom: 29px;
    }
    .profile-connect-descr {
        padding-bottom: 52px;
    }
    .my-login-form {
        align-items: center;
    }
    .profile-connect-descr {
        line-height: 125%;
        text-align: center;
        font-size: 16px;
        color: #4D4D4D;
        align-self: center;
        width: fit-content;
    }
    .step-next  {
        font-family: inherit;
        all: initial;
        width: auto !important;
        height: 28px;
        font-size: 18px;
        line-height: 26px;
        text-align: center;
        text-decoration: underline;
        color: #000000;
        font-family: inherit;
        font-weight: 400;
        cursor: pointer;
    }
    .onboarding__error::before {
        all: unset;
        display: inline-block;
        content: '';
        transform: translateY(25%);
        width: 20px;
        height: 20px;
        background-image: url("../../assets/icons/error.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    .onboarding__error.active {
        background-color: unset;
        border: unset;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

.btn-blue.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    opacity: 0.8;
}

.btn-blue.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.onboarding__notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    display: block;
    font-size: 14px;
    line-height: 1.4;
    animation: slideInFromTop 0.3s ease-out;
}

.input-error.login-input {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.onboarding-form__linkedin .onboarding__error {
    margin-top: 0;
    color: #dc3545;
    font-size: 13px !important;
    font-weight: 400;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.onboarding-form__linkedin .onboarding__error.active {
    opacity: 1;
    animation: slideInFromTop 0.3s ease-out;
}

.onboarding__profile-connect_continue {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.linkedin-note-span {
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
    line-height: 1.4;
}

.onboarding-form__linkedin .login-input:focus {
    border-color: #7b61ff;
    box-shadow: 0 0 0 0.2rem rgba(123, 97, 255, 0.25);
    outline: none;
}

.onboarding-form__linkedin .login-input:focus.input-error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.onboarding-form__linkedin.form-loading {
    position: relative;
    pointer-events: none;
}

.onboarding-form__linkedin.form-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    border-radius: 8px;
}

.btn-blue {
    background: var(--Button-primary, #7b61ff);
    padding: 12px 71px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    border: none;
    outline: none;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    width: max-content;
    height: auto;
    gap: 8px;
}

.btn-blue:not([disabled]):hover {
    color: #fff !important;
    text-decoration: none !important;
    background-color: var(--button-hovered3);
}

.btn-blue:focus-within,
.btn-blue:focus-visible,
.btn-blue:focus,
.btn-blue:active {
    color: #fff !important;
    text-decoration: none !important;
    background-color: var(--button-hovered3);
}

.select--disabled {
    opacity: 0.5;
    pointer-events: none;
    background-color: #f5f5f5;
}

.select--disabled .select__content {
    color: #999;
}

#header-pc {
    display: flex;
    justify-content: space-around;
    margin-top: 3px;
    padding: 6px 0;
}

ul {
    padding: 0;
    margin: 0;
    display: flex;
}

li {
    list-style: none;
}

.manu-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manu-div > ul {
    display: flex;
}

.manu-div > ul > li > a {
    text-decoration: none;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-right: 44px;
    color: #000;
    white-space: nowrap !important;
}

.btn-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-btn-2 {
    width: 132px;
    height: 52px;
    border-radius: 12px;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    background: #000;
}

.header-btn-2:hover {
    cursor: pointer;
    background: #000000d9;
}

/* -----------------------------------------------------------------------*/

.container {
    width: 57px;
    height: 57px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.stick {
    width: 30px;
    height: 3px;
    border-radius: 4px;
    margin-bottom: 14px;
    background-color: rgba(123, 97, 255, 1);
    display: inline-block;
}

.stick:last-child {
    margin-bottom: 0;
}

.stick-1.open {
    animation: stick-1-open 0.6s ease-out forwards;
}

.stick-2.open {
    animation: stick-2-open 0.6s linear forwards;
}

.stick-3.open {
    animation: stick-3-open 0.6s linear forwards;
}

@keyframes stick-1-open {
    0% {
        width: 50px;
    }
    40% {
        background-color: #000;
        width: 8px;
        transform: translate(40px, 0px);
    }
    75%,
    80% {
        width: 8px;
        transform: translate(40px, -50px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    100% {
        background-color: #000;
        width: 0;
        transform: translate(35px, 46px);
    }
}

@keyframes stick-2-open {
    80% {
        background-color: rgba(123, 97, 255, 1);
        transform: translate(0px, 0px) rotate(0deg);
    }
    100% {
        background-color: #000;
        transform: translate(8px, -5px) rotate(40deg);
    }
}

@keyframes stick-3-open {
    80% {
        background-color: rgba(123, 97, 255, 1);
        transform: translate(0px, 0px) rotate(0deg);
    }
    100% {
        background-color: #000;
        transform: translate(8px, -22px) rotate(-40deg);
    }
}

.stick-1.close {
    width: 8px;
    transform: translate(27px, 26px);
    animation: stick-1-close 0.6s ease-out forwards;
}

.stick-2.close {
    transform: translate(0px, 0px) rotate(40deg);
    animation: stick-2-close 0.6s ease-out forwards;
}

.stick-3.close {
    transform: translate(0px, -23px) rotate(-40deg);
    animation: stick-3-close 0.6s ease-out forwards;
}

@keyframes stick-1-close {
    0%,
    70% {
        width: 0;
    }
    100% {
        width: 50px;
        transform: translate(0, 0);
    }
}

@keyframes stick-2-close {
    0% {
        background-color: #ff1456;
        width: 50px;
    }
    20% {
        background-color: #ff1456;
        width: 8px;
        transform: translate(0, 0px) rotate(40deg);
    }
    40% {
        background-color: rgba(123, 97, 255, 1);
        width: 0;
    }
    65% {
        transform: translate(0, -70px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    80% {
        width: 0;
    }
    100% {
        width: 50px;
        transform: translate(0, 0px);
    }
}

@keyframes stick-3-close {
    0% {
        background-color: #ff1456;
        width: 50px;
    }
    20% {
        background-color: #ff1456;
        width: 8px;
        transform: translate(0, -23px) rotate(-40deg);
    }
    40% {
        background-color: rgba(123, 97, 255, 1);
    }
    65% {
        transform: translate(0, -93px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    90% {
        width: 8px;
    }
    100% {
        width: 50px;
        transform: translate(0, 0px);
    }
}

.login-form-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 53px;
}

.my-login-form > span {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    color: black;
}

.login-a {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 28px;
}

.login-a > a {
    text-decoration: none;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: rgba(123, 97, 255, 1);
}

.login-btn {
    height: 52px;
    color: #fff;
    background: rgba(123, 97, 255, 1);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 21px;
}

.login-btn:hover {
    cursor: pointer;
    background: rgb(123 97 255 / 72%);
}

.bottom-text {
    display: flex;
    justify-content: center;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.bottom-text > span > a {
    color: rgba(123, 97, 255, 1);
}

#header-tel {
    padding: 10px 0;
}

.hed-tel-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    width: 100%;
}

/* прибрать, якщо стилі інші */
.header-pc--login .manu-div > ul > li > a:hover {
    opacity: 0.7;
}

.lock body {
    overflow: hidden;
    touch-action: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Poppins";
}

.hero {
    flex: 1 1 auto;
}

footer {
    margin-top: auto;
}

.hero__container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    max-width: 1200px;
    box-sizing: border-box;
}

.hero__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 54px;
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

.hero__text {
    font-size: 18px;
    line-height: 1.5;
    color: var(--Black-80, rgba(51, 51, 51, 1));
}

.hero__text:not(:first-child) {
    display: block;
}

.hero__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--Button-primary, rgba(123, 97, 255, 1));
    padding: 14px 74px;
    gap: 6px;
    border-radius: 50px;
    border: 3px solid transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    max-width: 390px;
    width: 100%;
    transition: all 0.3s ease;
}

.hero__btn:focus-within,
.hero__btn:focus-visible,
.hero__btn:focus,
.hero__btn:active,
.hero__btn:hover {
    color: #fff;
    background: #6343d8;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.hero__img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero__img {
    margin-top: -20px;
}

@media (min-width: 920px) {
    .hero__container {
        grid-template-columns: 1fr 36%;
    }
}

@media (min-width: 768px) {
    .hero__container {
        margin-top: 20vh;
        margin-bottom: 30vh;
        gap: 80px;
    }

    .hero__text:not(:first-child) {
        margin-top: 48px;
    }

    .hero__btn:not(:first-child) {
        margin-top: 48px;
    }
}

@media (max-width: 1360px) {
    .hero__container {
        padding: 0 32px;
    }
}

@media (max-width: 920px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 62px;
    }
}

@media (max-width: 768px) {
    .hero__container {
        margin-top: 38px;
        margin-bottom: 130px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__text {
        font-size: 12px;
    }

    .hero__text:not(:first-child) {
        margin-top: 30px;
    }

    .hero__btn {
        max-width: 270px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__btn:not(:first-child) {
        margin-top: 30px;
    }
}

/* header-login style */
.header-pc--login .logo-div {
    display: flex;
    align-items: center;
}

#header {
    margin-top: 12px;
}

.header-pc--login {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 32px;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

.header-pc--login .header__left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-pc--login .manu-div > ul > li > a {
    margin-right: 0 !important;
    padding: 13px 18px;
    transition: all 0.3s ease;
}

.header__actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
}

.header__actions button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    padding: 0;
}

.header__actions button:hover {
    background-color: transparent !important;
}

.header-svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: transparent;
}

.header__upgrade {
    padding: 7px 18px;
    border-radius: 12px;
    background: transparent;
    position: relative;
    min-width: 150px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    padding: 0;
}

.header__upgrade:active,
.header__upgrade:focus-visible,
.header__upgrade:focus-within,
.header__upgrade:focus {
    background-color: transparent !important;
    outline: none !important;
}

.header__upgrade span,
.header__upgrade svg {
    z-index: 2;
    color: #fff;
    position: relative;
}

.header__upgrade::before,
.header__upgrade::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s ease;
}

.header__upgrade::before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--Button-primary2, rgba(0, 0, 0, 1));
    border-radius: 9px;
    z-index: 0;
}

.header__upgrade::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #8166f3 0%, #62d9e8 100%);
    z-index: -1;
    border-radius: 12px;
}

.header__upgrade:hover::before {
    background: var(--Black-80, rgba(51, 51, 51, 1));
}

.header__upgrade:hover::after {
    background: linear-gradient(90deg, #62d9e8 0%, #8166f3 100%);
}

.header__upgrade:active::before {
    background: var(--Black-70, rgba(77, 77, 77, 1));
}

.header__dashboard {
    display: flex;
    background: #fff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 1);
    border-radius: 12px;
    font-size: 18px;
    width: 160px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.header__dashboard:visited,
.header__dashboard:focus-visible,
.header__dashboard:focus-within,
.header__dashboard:focus,
.header__dashboard:hover {
    color: #000000 !important;
    background: var(--Hover-light, rgba(243, 244, 244, 1)) !important;
}

.header__dashboard:active {
    color: #000000;
    background: var(--Pressed-light, rgba(229, 229, 229, 1));
}

.header__actions .header__dropdown-btn {
    background: transparent;
    width: max-content;
    border: none;
    font-size: 18px;
    line-height: 26px;
    flex-wrap: nowrap;
    padding: 7px 18px;
    color: #000000;
}

.header__dropdown-block {
    position: relative;
}

.header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid rgba(186, 193, 194, 1);
    background: #fff;
    z-index: 5;
    padding: 4px;
    border-radius: 5px;
    height: 0;
    opacity: 0;
    transition: height 0.3s ease;
    overflow: hidden;
}

.header__dropdown-block:hover .header__dropdown-menu {
    height: max-content;
    opacity: 1;
}

.header__dropdown-menu ul {
    display: flex;
    flex-direction: column;
}

.header__dropdown-menu ul li a {
    display: block;
    cursor: pointer;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding: 4px 8px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.header__dropdown-menu ul li a:hover {
    background: var(--Button-hovered2, rgba(243, 244, 244, 1));
}

.menu {
    display: none;
}

.icon-menu {
    display: none;
}

@media (max-width: 1400px) {
    .header-tel {
        display: flex;
    }

    .menu {
        display: flex;
    }

    .menu__body {
        position: fixed;
        width: 100%;
        height: 100%;
        left: -120%;
        top: 0;
        overflow: auto;
        padding: 110px 30px;
        background: #fff;
        transition: left 0.3s;
        z-index: 10;
        display: flex;
        flex-direction: column;
        gap: 24px;
        box-sizing: border-box;
        max-width: 600px;
    }

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

    .header-pc {
        display: none;
    }

    .menu-open .menu__body {
        left: 0;
    }

    .menu-open .logo-div-tel {
        z-index: 120;
    }

    .menu-btn {
        z-index: 120;
    }

    .menu__item {
        border-radius: 12px;
        overflow: hidden;

        width: 100%;
    }

    .menu__item a,
    .menu__item span {
        text-decoration: none;
        color: #000;
        font-size: 16px;
        font-weight: 500;
        line-height: 26px;
        padding: 13px 2px;
    }

    .menu__item a {
        display: block;
        width: 100%;
        transition: all 0.3s ease;
    }

    .menu__item a:hover {
        background: var(--Button-hovered2, rgba(243, 244, 244, 1));
    }
}

.menu__item.link-parent span {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__item.link-parent span::after {
    content: url("../../assets/icons/arrow-right.svg");
    transition: all 0.3s ease;
}

.menu__item.link-parent ul {
    display: none;
    transition: all 0.3s ease;
}

.menu__item.link-parent.open ul {
    display: flex;
    flex-direction: column;
}

.menu__item.link-parent.open ul li a {
    padding: 13px 20px;
    font-size: 16px;
    line-height: 26px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu__item.link-parent.open ul li:hover {
    background: var(--Button-hovered2, rgba(243, 244, 244, 1));
}

.menu__item.link-parent.open span::after {
    transform: rotate(90deg);
}

.header__dashboard--menu {
    width: 100%;
    min-height: 52px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__upgrade--menu {
    width: 100%;
    min-height: 52px;
    max-width: 100%;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.header__upgrade--menu::after {
    display: none !important;
}

.header__upgrade--menu::before {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

body::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease 0s;
    pointer-events: none;
    z-index: 9;
}

.menu-open body::after {
    opacity: 1;
}

.select {
    min-width: 0;
    position: relative;
    width: 100%;
}

.select__body {
    position: relative;
}

.select__title {
    color: inherit;
    text-align: left;
    border: 1px solid var(--Grey-med, rgba(174, 184, 194, 1));
    background-color: #fff;
    cursor: pointer;
    width: 100%;
    border-radius: 12px;
    padding: 5px 18px;
}

.select__value {
    display: flex;
    min-width: 0;
    align-items: center;
    height: 30px;
    gap: 10px;
}

.select__value > * {
    flex: 1 1 auto;
}

.select__value:after {
    content: url("../../assets/icons/arrow-select.svg");
    align-self: stretch;
    position: absolute;
    top: calc(50% - 10px);
    right: 18px;
    flex: 0 0 10px;
    transition: all 0.3s ease 0s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select__content {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select__content::placeholder {
    color: rgba(108, 117, 147, 1);
}

.select__text {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%;
}

.select__options {
    color: #000;
    position: absolute;
    top: 100%;
    border-radius: 12px;
    min-width: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid var(--Grey-med, rgba(174, 184, 194, 1));
    padding: 10px 0 5px 0;
}

.select__scroll {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
}

.select__option {
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 6px 18px;
    color: inherit;
    background: transparent;
    transition: all 0.3s ease;
    border: none;
}

.select__option:hover {
    background: var(--PurpleBlue-light, rgba(226, 234, 255, 1));
}

.onboarding__label {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
}

.onboarding__label .login-input {
    width: 100%;
}

.profile-modal .onboarding__label .login-input {
    max-width: 100%;
}

.profile-modal .my-login-form .login-input {
    height: 40px;
    max-width: 100%;
}

button {
    cursor: pointer;
}

._select-open .select__value::after {
    transform: rotate(180deg);
}

.onboarding__error {
    display: none;
}

.onboarding__error.active {
    color: var(--Error-dark, rgba(228, 22, 72, 1)) !important;
    font-family: "Poppins";
    font-size: 13px;
    line-height: 16px;
    display: flex;
    gap: 5px;
    margin-top: 18px;
    align-items: center;
}

.onboarding__error::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../../assets/icons/error.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.onboarding__notification {
    font-family: "Poppins";
    font-size: 13px;
    line-height: 26px;
    text-align: center;
    color: var(--Grey-dark, rgba(108, 117, 147, 1));
    background: var(--PurpleBlue-light, rgba(226, 234, 255, 1));
    border-radius: 8px;
    padding: 5px;
}

.onboarding-form .btn-border {
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    color: #000;
}

.onboarding-form .btn-border:hover {
    color: rgba(123, 97, 255, 1);
}

.onboarding__notification + .btn-primary {
    margin-top: 41px;
}

.input-error.login-input {
    border-color: var(--Error-dark, rgba(228, 22, 72, 1)) !important;
}

.my-login-form.form_error .onboarding__notification {
    display: none;
}

.onboarding__loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form.form_loading .onboarding__loading--v1 {
    display: flex;
}

.onboarding__loading span {
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: var(--Black-70, rgba(77, 77, 77, 1));
    margin-top: -20px;
}

.form_loading--next .onboarding__loading--v1 {
    display: none;
}

.form_loading--next .onboarding__loading--v2 {
    display: flex;
}

.onboarding-form--info {
    margin-top: 50px;
    max-width: 1206px;
    width: 100%;
}

.onboarding__bullets {
    display: flex;
    gap: 19px;
    justify-content: center;
    align-items: center;
}

.onboarding__bullets span {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    color: var(--Grey-med, rgba(174, 184, 194, 1));
    margin-left: 30px;
}

.onboarding__bullet {
    width: 44px;
    height: 3px;
    border-radius: 24px;
    background: var(--Pressed-light, rgba(229, 229, 229, 1));
}

.onboarding__bullet.active {
    background: var(--Purple-medium, rgba(162, 161, 255, 1));
}

.onboarding__bullets:not(:last-child) {
    margin-bottom: 70px;
}

.onboarding-form--info .login-form-title {
    margin-bottom: 52px;
    position: relative;
}

.login-form-title .button__add {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.onboarding-form--info .my-login-form {
    max-width: 652px;
    width: 100%;
    margin: 0 auto;
}

.onboarding-form--info .form-div__line:not(:last-child) {
    margin-bottom: 20px;
}

.form-div__line--2 {
    grid-template-columns: 1.3fr 0.7fr;
}

.onboarding__step {
    display: none;
}

.onboarding__step.active {
    display: flex;
    flex-direction: column;
}

.onboarding__actions {
    border-top: 1px solid var(--Button-hovered, rgba(227, 220, 255, 1));
    padding-top: 33px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 70px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.onboarding__actions .btn-primary {
    margin: 0;
}

.onboarding__actions .btn-back {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 65px;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--Grey-dark, rgba(108, 117, 147, 1));
    transition: all 0.3s ease;
}

.onboarding__actions .btn-back::before {
    content: url("../../assets/icons/arrow-left.svg");
    height: 22px;
}

.onboarding__step .onboarding__error {
    background: var(--Error-10, rgba(255, 232, 238, 1));
    padding: 5px 18px;
    border-radius: 8px;
}

.onboarding__step .onboarding__error::before {
    display: none;
}

.onboarding__step .btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
}

.onboarding__step .btn-primary::after {
    content: url("../../assets/icons/arrow-white.svg");
    height: 20px;
}

.form-div__line--3 {
    grid-template-columns: 1fr 1fr auto;
    gap: 5px;
}

.onboarding__label--min {
    max-width: 100px;
    width: 100%;
}

.onboarding__step .onboarding__label {
    gap: 8px;
}

.onboarding__step .onboarding__label span {
    font-size: 16px;
    line-height: 24px;
}

.onboarding__step .button__add {
    display: flex;
    gap: 8px;
    align-items: center;
    background: transparent;
    border: none;
    font-family: "Poppins";
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
}

.onboarding__step .button__add:hover {
    color: rgba(123, 97, 255, 1);
}

.onboarding__step .button__add:hover svg path {
    stroke: rgba(123, 97, 255, 1) !important;
}

.onboarding__actions .btn-back:hover {
    opacity: 0.7;
}

.onboarding__actions .btn-back:disabled {
    opacity: 0.3;
}

@media screen and (max-width: 768px) {
    .onboarding-form--info {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-div__line--3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 20px;
    }

    .onboarding__label--70 {
        max-width: 64%;
    }
}

.checkbox {
    position: relative;
}

.checkbox:not(:first-child) {
    margin-top: 8px;
}

.modal-body .checkbox:not(:first-child) {
    margin-top: 0;
}

.checkbox__label {
    margin-bottom: 0;
}

.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.checkbox__label:hover:before {
    box-shadow: 0 0 5px rgba(123, 97, 255, 1);
}

.checkbox__input:checked + .checkbox__label:before {
    background: rgba(123, 97, 255, 1);
}

.checkbox__label {
    cursor: pointer;
    display: inline-flex;
    position: relative;
    gap: 10px;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #16171D;
}

.checkbox__label:before {
    content: "\2713";
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--Grey-med, rgba(174, 184, 194, 1));
    border-radius: 6px;
    color: #fff;
    transition: all 0.3s ease;
}

.onboarding__add-file {
    position: relative;
}

.questionnaire__input-file {
    display: none;
}

.input-file__label {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(196, 199, 212, 1);
    border-radius: 24px;
    max-width: 636px;
    width: 100%;
    min-height: 146px;
    padding: 24px 48px;
    size: 20px;
    line-height: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .input-file__label {
        padding: 18px;
    }
}

.input-file__label svg {
    margin-bottom: 12px;
    flex-shrink: 0;
}

.input-file__label span {
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    color: var(--Grey-dark, rgba(108, 117, 147, 1));
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.input-file__label div {
    font-family: "Poppins";
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: rgba(108, 117, 147, 1);
}

.editDocument {
    position: absolute;
    right: 15px;
    top: 7px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    z-index: 10;
}

.tooltips {
    position: relative;
    width: max-content;
}

.tooltip__text {
    display: flex;
    gap: 5px;
    align-items: center;
    width: max-content;
    font-size: 12px;
    font-weight: 500;
    line-height: 26px;
    cursor: pointer;
}

.onboarding__step .login-input {
    margin-bottom: 0;
}

.tooltip__message {
    display: none;
    position: absolute;
    font-family: "Poppins";
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 12px 12px 12px 0;
    padding: 24px 15px 24px 34px;
    background: #fff;
    z-index: 3;
    bottom: 100%;
    max-width: 210px;
    width: max-content;
    left: calc(100% - 20px);
}

@media (max-width: 768px) {
    .tooltip__message {
        left: unset;
        right: calc(100% - 20px);
        max-width: 140px;
        padding: 14px;
        border-radius: 12px 12px 0 12px;
    }
}

.tooltips:hover .tooltip__message {
    display: block;
}

.login-form__subtitle {
    display: grid;
    grid-template-columns: 115px 1fr 115px;
    gap: 20px;
    max-width: 716px;
    width: 100%;
    margin: 14px auto 0;
}

.checkbox-type {
    position: relative;
}

.checkboxes {
    display: flex;
    column-gap: 14px;
    row-gap: 16px;
    flex-wrap: wrap;
}

.checkbox-type__label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--Grey-med, rgba(174, 184, 194, 1));
    border-radius: 24px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    color: var(--Grey-dark, rgba(108, 117, 147, 1));
    width: max-content;
    transition: all 0.3s ease;
}

.checkbox-type__label::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../../assets/icons/plus.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.checkbox-type__label:hover {
    background: var(--PurpleBlue-light, rgba(226, 234, 255, 1));
}

.checkbox__input:checked + .checkbox-type__label {
    background: var(--PurpleBlue-light, rgba(226, 234, 255, 1));
    color: #000;
}

.checkbox__input:checked + .checkbox-type__label::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../../assets/icons/check.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 19px;
    margin-bottom: 0;
}

.switch input {
    display: none;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--Grey-light, rgba(229, 229, 229, 1));
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch input:checked + .slider {
    background-color: var(--Button-primary, rgba(123, 97, 255, 1));
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px var(--Button-primary, rgba(123, 97, 255, 1));
}

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

.switch .slider.round {
    border-radius: 34px;
}

.switch .slider.round:before {
    border-radius: 50%;
}

fieldset .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.onboarding__step--9 .login-form-title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.onboarding__step--9 .my-login-form {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.switch-label {
    display: flex;
    align-items: center;
    gap: 4px;
    height: min-content;
}

.switch-label span {
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 26px !important;
}

.range-block {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.range-slider {
    width: 300px !important;
    flex-shrink: 0;
}

.irs--big .irs-min,
.irs--big .irs-max,
.irs-single {
    display: none !important;
}

.irs--big .irs-line {
    top: 28px !important;
    height: 5px !important;
    background: var(--Grey-light, rgba(229, 229, 229, 1)) !important;
    border-radius: 10px !important;
}

.irs--big .irs-bar {
    top: 28px !important;
    height: 5px !important;
    background: var(--Button-primary, rgba(123, 97, 255, 1)) !important;
    box-shadow: none !important;
}

.irs--big .irs-handle {
    top: 18px !important;
    width: 28px !important;
    height: 28px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04) !important;
    background: #fff !important;
    border-radius: 50% !important;
    cursor: pointer;
}

.js-input.login-input {
    max-width: 54px;
    margin-bottom: 0 !important;
}

.extra-span {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 16px;
    line-height: 24px;
}

.extra-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.irs--big {
    height: 52px !important;
}

.select_extra .select__title {
    padding-right: 50px;
}

.range-notification {
    position: relative;
    color: var(--Warning-Text, rgba(129, 104, 41, 1));
    background: var(--Warning-Messages, rgba(255, 245, 221, 1));
    padding: 8px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.range-notification::before {
    content: "";
    display: block;
    height: 30px;
    width: 3px;
    background: rgba(188, 151, 54, 1);
    border-radius: 2px;
}

.onboarding__step--9 .form-col {
    gap: 40px !important;
}

.onboarding__step--9 .onboarding__actions {
    max-width: 764px;
}

.onboarding__params {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.onboarding__params .input-value {
    background: var(--PurpleBlue-light, rgba(226, 234, 255, 1));
    border-radius: 24px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    padding: 4px 16px;
}

.onboarding__params .input-value-del {
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0 !important;
}

#addExperience.iziModal,
#addEducation.iziModal,
#addVolunteering.iziModal {
    width: 100%;
    max-width: 823px !important;
    height: auto;
}

@media (min-width: 768px) {
    #addExperience .modal-body,
    #addEducation .modal-body,
   #addVolunteering .modal-body {
        padding: 20px 86px 40px;
    }

    #addExperience .modal-body,
    #addEducation .modal-body,
   #addVolunteering .modal-body {
        border-radius: 38px !important;
    }
}

@media (max-width: 768px) {
    #addExperience .modal-body,
    #addEducation .modal-body,
   #addVolunteering .modal-body {
        padding: 50px 20px 40px;
    }

    #addExperience .modal-close,
    #addEducation .modal-close,
   #addVolunteering .modal-close {
        background: var(--Button-hovered2, rgba(243, 244, 244, 1));
        border-radius: 50%;
    }

    #addExperience.iziModal,
    #addEducation.iziModal
   #addVolunteering.iziModal {
        border-radius: 15px !important;
    }
}

#addExperience .modal-body .h1-title,
#addEducation .modal-body .h1-title {
    margin-top: 0;
    font-family: "DM Sans";
    font-size: 28px;
    font-weight: 700;
    line-height: 58px;
    text-align: center;
    margin-bottom: 20px;
}

.modal-body .my-login-form span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
}

.modal-body .onboarding__label {
    gap: 8px;
    margin-bottom: 0 !important;
}

.modal-body .my-login-form .login-input::placeholder {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: var(--Grey-med, rgba(174, 184, 194, 1));
}

.modal-body .my-login-form {
    display: flex;
    flex-direction: column;
    max-width: 100% !important;
    row-gap: 22px;
}

@media (max-width: 768px) {
    .modal-body .my-login-form {
        row-gap: 20px;
    }
}

.modal-body .my-login-form .login-input {
    margin-bottom: 0 !important;
}

.modal-body .my-login-form .checkbox {
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: rgba(22, 23, 29, 1);
}

#addExperience .modal-body textarea,
#addEducation .modal-body textarea {
    min-height: 78px;
}

#addExperience .modal-body .onboarding__actions,
#addEducation .modal-body .onboarding__actions {
    padding-top: 0;
    border-top: 0;
    margin-bottom: 0;
    justify-content: center;
    gap: 25px;
}

@media (min-width: 768px) {
    #addExperience .modal-body .onboarding__actions,
    #addEducation .modal-body .onboarding__actions {
        margin-top: 18px;
    }
}

@media (max-width: 768px) {
    #addExperience .modal-body .onboarding__actions,
    #addEducation .modal-body .onboarding__actions {
        padding-top: 10px;
        margin-top: 35px;
        border-top: 1px solid var(--Button-hovered, rgba(227, 220, 255, 1));
    }
}

#addExperience .modal-body .btn-border,
#addEducation .modal-body .btn-border {
    border: 1px solid var(--Grey-med, rgba(174, 184, 194, 1));
    background: transparent;
    color: var(--Grey-dark, rgba(108, 117, 147, 1));
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    padding: 13px 50px;
    border-radius: 12px;
    width: 188px !important;
    height: 48px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#addExperience .modal-body .btn-border:hover,
#addEducation .modal-body .btn-border:hover {
    border-color: rgba(123, 97, 255, 1);
    color: rgba(123, 97, 255, 1);
}

#addExperience .modal-body .btn-primary,
#addEducation .modal-body .btn-primary {
    width: 188px !important;
    border-radius: 12px !important;
    min-width: max-content !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin: 0 !important;
}

.modal-body .my-login-form .onboarding__error.active {
    background: var(--Error-10, #ffe8ee);
    padding: 5px 18px;
    border-radius: 8px;
}

.modal-body .my-login-form .onboarding__error::before {
    display: none;
}

.onboarding__step--3 > div {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.experience__block {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.experience-card::before {
    content: url("../../assets/icons/experience.svg");
    padding-top: 20px;
}

.experience-card.experience-card--education::before {
    content: url("../../assets/icons/graduation-cap-education.svg");
    padding-top: 20px;
}

.experience-card {
    display: flex;
    gap: 20px;
}

.experience-card__info {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #000;
}

.experience-card__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.experience-card__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
}

.experience-card__date {
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
}

.experience-card__text {
    font-size: 12px;
    line-height: 18px;
}

.experience-card__actions {
    position: relative;
    height: max-content;
}

.experience-card__list {
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid var(--Grey-med, #aeb8c2);
    border-radius: 5px;z
    padding: 6px;
    display: none;
    flex-direction: column;
}

.experience-card__btn {
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
}

.experience-card__actions.open .experience-card__list {
    display: flex;
}

.experience-card__option {
    padding: 8px 10px;
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.experience-card__option:hover {
    background: rgba(227, 220, 255, 0.6);
}

.onboarding__step--4 .login-form-title {
    max-width: 652px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.onboarding__actions .btn-primary {
    border-radius: 12px !important;
}

@media (max-width: 1000px) {
    .onboarding-form--info {
        overflow: unset;
    }

    .onboarding__bullets {
        margin-top: -90px;
    }

    .onboarding__bullets span {
        display: none;
    }

    .onboarding__actions .btn-back {
        padding: 14px 40px;
    }

    .onboarding__actions .btn-primary {
        padding: 8px 40px;
    }
}

@media screen and (max-width: 768px) {
    .onboarding__legal-form .onboarding__block {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .onboarding__country + .onboarding__form {
        color: #000;
        gap: 15px;
        padding-left: 10px;
        border-left: 1px solid rgba(108, 117, 147, 1);
    }

    legend {
        font-size: 14px !important;
    }

    .onboarding__country {
        font-size: 16px;
        line-height: 24px;
    }

    .btn-primary.step-next {
        padding: 14px 26px;
    }

    .onboarding__actions {
        padding-top: 10px;
        margin-top: 35px;
    }

    .onboarding-form {
        padding-bottom: 30px;
    }

    .onboarding__legal-form {
        gap: 30px;
    }

    .onboarding-form--info .login-form-title {
        margin-bottom: 35px;
    }

    .onboarding-form--info .my-login-form {
        color: #000;
    }
}

@media (max-width: 900px) {
    .login-form__subtitle {
        grid-template-columns: 24px 1fr 24px;
    }

    .tooltip__text span {
        display: none;
    }
}

@media (max-width: 768px) {
    .range-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .onboarding__fieldset,
    fieldset {
        position: relative;
    }

    .switch-label {
        position: absolute;
        top: 0;
        right: 20px;
    }

    .checkboxes {
        gap: 5px;
    }

    .checkbox-type__label {
        padding: 7px 10px;
        gap: 2px;
    }

    fieldset legend {
        padding-right: 96px;
    }
}

.button-upgradec {
    background: #fff;
    border-radius: 45px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: #fff;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--Black, rgba(0, 0, 0, 1));
    color: #000;
    transition: all 0.3s ease;
    background: var(--Grey-med, rgba(174, 184, 194, 1));
    border: var(--Grey-med, rgba(174, 184, 194, 1));
    cursor: default;
}

.plan__actions {
    width: fit-content !important;
}

.btn-invoice {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    padding: 12px 32px !important;
}

.btn-invoice span {
    text-wrap: nowrap !important;
}

input .input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.select__title.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.input-error .select2-selection--single .select2-selection__rendered {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.input-error .select__title {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.input-error .custom_select {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
