.pricing {
    overflow-x: clip;
    padding-left: 0 !important;
    align-items: flex-start;
}
.sidesearch-title {
    display: block;
    font-family: var(--font-second);
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}
.sidesearch {
    width: 100%;
    position: relative;
}
.sidesearch input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.6); 
    border-radius: 0;
    padding: 20px 30px 20px 20px;
    font-size: .95rem;
    line-height: 130%;
    background-color: transparent;
    color: #000;
}
.sidesearch input::placeholder {
    color: #000;
    font-weight: 300;
}
.sidesearch button {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    right: 10px;
    transform: translateY(-50%);
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.sidesearch button svg {
    width: 100%;
    height: auto;
}

.pricing__side {
    max-width: 500px;
    flex: 0 0 500px;
    padding: 30px 50px 40px 60px;
    background-color: var(--color-main);
}

.pricing__content {
    padding-left: 80px;
}
.pricing__nav-item {
    padding: 0;
    font-size: 1rem;
    line-height: 120%;
    width: 100%;
    cursor: pointer;
    transition: .3s;
    font-weight: 700;
    text-align: left;
    border: none;
    border-bottom: 1px solid transparent;
    background-color: transparent;
    font-family: var(--font-main);
    text-transform: uppercase;
    display: inline-block;
}
.pricing__nav-item:not(:last-child) {
    margin-bottom: 25px;
}
.pricing__nav-item:hover {
    padding-left: 15px;
}
.pricing__nav-item.active {
    border-color: #000;
    padding-left: 15px;
}
.pricing__nav-item img {
    width: 45px;
    min-width: 45px;
    height: auto;
    margin-right: 15px;
}


.pricing__content {
    max-width: calc(100% - 500px);
    flex: 0 0 calc(100% - 500px);
}
.pricing__items:not(:last-child) {
    margin-bottom: 60px;
}
.pricing__content-cat {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: clamp(26px, 2vw, 40px);
    line-height: 120%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    font-weight: 600;
}
.pricing__content-cat svg {
    width: 20px;
    min-width: 20px;
    height: auto;
    margin-right: 15px;
}
.pricing__item {
    background-color: #fff;
    width: 100%;
    border-radius: 40px;
}
.pricing__item-title {
    font-size: 1.2rem;
    color: var(--color-third);
    margin-bottom: 15px;
}
.pricing__list:not(:first-child) {
    margin-top: 30px;
}
.pricing__list-item {
    transition: .3s;
}
.pricing__list-item:hover {
    background-color: #f7f7f7;
}
.pricing__list-item:last-child .seperator {
    display: none !important;
}
.pricing__list-item>div {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}
.pricing__list-item>svg {
    height: auto;
    width: 100%;
}
.pricing__name {
    display: inline-block;
    font-weight: 500;
    color: var(--color-third);
    padding-right: 30px;
    font-size: .95rem;
    line-height: 130%;
}
.pricing__price {
    display: inline-block;
    font-weight: 500;
    color: var(--color-third);
    padding-right: 30px;
    font-size: .95rem;
    line-height: 130%;
    min-width: 160px;
    text-align: right;
}

.pricing__frame-item {
    box-shadow: 0px 0px 10px rgba(0,0,0, .06);
    padding: 5px 15px;
    font-size: .9rem;
    line-height: 140%;
    font-weight: 400;
}

@media(max-width: 1440px) {
    .pricing__side {
        max-width: 300px;
        flex: 0 0 300px;
    }
    .pricing__content {
        max-width: calc(100% - 300px);
        flex: 0 0 calc(100% - 300px);
    }
}

@media(max-width: 992px) {
    .pricing {
        padding-right: 0 !important;
    }
    .pricing__side {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .pricing__content {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 15px;
        margin-top: 30px;
    }
}
@media(max-width: 767px) {
    .pricing__side {
        padding: 30px 20px;
    }
    .pricing__nav-item:not(:last-child) {
        margin-bottom: 10px;
    }
}