.to-prices-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px !important;
}

.to-prices-tabs__img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.to-prices-tabs .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 10px !important;
    color: var(--main-color);
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.to-prices-tabs .nav-item.show .nav-link, .to-prices-tabs .nav-link.active {
    color: var(--main-color) !important;
    background-color: #fff !important;
    border-color: var(--main-color) !important;
}

.to-prices-tabs__table-wrapper {
    padding: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.to-prices-tabs__more-wrapper {
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 18px;
}

.to-prices-tabs__more-link {
    color: var(--main-color);
    border-bottom: 1px dotted var(--main-color);
    font-size: 18px;
    line-height: 18px;
}

.to-prices__table th:not(:first-child) {
    white-space: nowrap;
    text-align: right;
}

.to-prices__table td:not(:first-child) {
    white-space: nowrap;
    text-align: right;
}

.to-prices__table th:first-child {
    width: 50%;
}

.to-prices__table td:first-child {
    width: 50%;
}

@media(max-width: 767px) {
    .to-prices-tabs .nav-item {
        width: 50%;
    }

    .to-prices__table th:first-child {
        width: 200px;
        word-break: keep-all;
    }
    
    .to-prices__table td:first-child {
        width: 200px;
        word-break: keep-all;
    }
}