/*body {*/
/*    background: white !important;*/
/*}*/
.price-page {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.price-page__title {
    text-align: left;
    
    @media (max-width: 860px) {
        text-align: center;
    }
}

.price-page__container {
    width: 100%;
    max-width: calc(1170px + 60px);
    flex: 1;
    margin: 0 auto;
    padding: 30px;
    
    /*@media (max-width: 860px) {*/
    /*    padding: 12px 12px;*/
    /*}*/
}

.price-page__table {
    border: 1px solid #dedede;
    border-radius: 5px;
    background: white;
}

.price-page__th {
    background: white;
    text-align: center;
    padding: 10px 8px;
    font-size: 1.3rem;
    color: #383838;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.price-page__td {
    padding: 10px 8px;
    font-size: 1.2rem;
    color: #232222;
}

.price-page__table-head {
    display: grid;
    grid-template-columns: 5% 30% 15% 10% 20% 20%;

    @media (max-width: 1200px) {
        grid-template-columns: 7% 30% 13% 10% 20% 20%;
    }
    border-radius: 5px 5px 0 0;
    background: white !important;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 4;
    height: 56px;
    border-bottom: 1px solid #dedede;
}

.price-page__content {
    display: block;
    width: 100%;
}
 
.price-page__table-row {
    position: relative;
    display: grid;
    grid-template-columns: 5% 30% 15% 10% 20% 20%;
    
    @media (max-width: 1200px) {
        grid-template-columns: 7% 30% 13% 10% 20% 20%;
    }
}

.price-page__table-row:hover {
    background: rgba(159, 241, 193, 0.6);
    transition: 0.5s;
}

.price-page__table-row:not(:last-child) {
    border-bottom: 1px solid #dedede;
}

.price-page__table-category-row {
    width: 100%;
    background: white;
}

.price-page__table-category-row-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    padding: 10px;
    /*background: #F9F9FC;*/
    background: rgb(238, 238, 238);
    position: sticky;
    top: 56px;
    z-index: 3;
}

.example-link {
    margin-left: 6px;
    color: #2DC574;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 1.2rem;
}

.example-link:hover {
    opacity: 0.6;
    transition: 0.5s;
    color: #2DC574;
}

.example-link-mobile {
    font-size: 12px;
    color: #2DC574;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.custom-selected {
    background: rgba(159, 241, 193, 0.6) !important;
    transition: all 0.1s;
}

.tip-container {
    background: #2DC574 !important;
    color: white !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.tippy-arrow {
    background: #2DC574 !important;
}


/* 1 колонка */
.th-checkbox {
    cursor: pointer;
    text-decoration: underline;
    color: #383838;
}
.th-checkbox:hover {
    transition: 0.3s;
    background: rgba(159, 241, 193, 0.6);
    color: #2DC574;
}

.custom-selected-th {
    color: #2DC574;
}

.custom-selected-th.th-checkbox:hover {
    color: #383838;
}

@supports(-webkit-appearance: none) or (-moz-appearance: none) {
    .checkbox-input {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

.td-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-input {
    cursor: pointer;
    width: 18px;
    height: 18px;
    appearance: none;
    background: transparent;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    outline: none;
    position: relative;
}

.checkbox-input:checked {
   background-color: #79e0a5;
    border: 1px solid #2DC574;
}

.checkbox-input:active {
    border: 1px solid #2DC574;
    background: #c3f8dd;
}

.checkbox-input:checked::after {
    content: '✔';
    background: transparent;
    width: 10px;
    height: 10px;
    position: absolute;
    top: -1px;
    left: 3px;
    color: white;
}

#ch-offerta:checked::after {
    top: -3px;
    left: 2px;

    @media (max-width: 1200px) {
        top: 0;
    }
}

@media (max-width: 1200px) {
    .checkbox-input:checked::after {
        content: '✔';
        background: transparent;
        width: 12px;
        height: 12px;
        position: absolute;
        top: 2px;
        left: 4px;
        color: white;
    }
}

/* 2 колонка */
.td-name {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    @media (max-width: 1200px) {
        font-size: 1.3rem !important;
    }
}

.tip {
    display: block;
    @media (max-width: 860px) {
        display: none;
    }
}

.td-name a {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1d2124;
    text-underline-offset: 3px;
    align-items: center;
    vertical-align: middle;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
}

.td-name a:hover {
    color: #2DC574;
    transition: 0.5s;
}

/* 3 колонка */
.td-id {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2DC574;
    display: flex;
    justify-content: center;
    /*justify-content: flex-start;*/
    align-items: center;
    vertical-align: middle;

    @media (max-width: 1200px) {
        font-size: 1.3rem !important;
    }
}

/* 4 колонка */
.td-price {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1d2124;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    @media (max-width: 1200px) {
        font-size: 1.3rem !important;
    }
}

.td-data-source {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    position: relative;
}

.td-data-source-el {
    background: #2DC574;
    padding: 3px 8px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    height: max-content;
    color: white;
}

.data-source-inner  {
    /*padding: 0 10px !important;*/
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.data-source-layer {
    display: flex;
    flex-direction: column;
}

.mobile-content__data-source-container {
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    overflow: hidden;
}

.data-source-elem {
    width: max-content;
    vertical-align: middle;
}

.data-source-elem-text {
    font-weight: 600;
    font-size: 1.4rem;

    @media (max-width: 1200px) {
        font-size: 1.3rem;
    }
    
    @media (max-width: 860px) {
        font-size: 1.6rem;
    }
}

.data-source-elem-divider {
    font-size: 1.4rem;
    color: #2DC574;
    font-weight: 600;
}
.data-source-watch-all {
    width: 30px;
    height: 30px;
    position: absolute;
    background: #79e0a5;;
    border-radius: 51%;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}
.data-source-watch-all:hover {
    transition: 0.3s;
    scale: 1.1;
    /*background: rgba(45, 197, 116, 0.1);*/
}

.has-expander.expander-closed {
    max-height: 50px;
}

@media(max-width: 860px) {
    .desktop-content, .data-source-desktop, .tg-desk {
        display: none !important;
    }
    
    .mobile-content, .data-source-mobile, .tg-mob {
        display: block;
    }
}

@media(min-width: 861px) {
    .desktop-content, .data-source-desktop, .tg-desk {
        display: block;
    }

    .mobile-content, .data-source-mobile, .tg-mob {
        display: none !important;
    }
}

.mobile-content, .mobile-content__group, .mobile-content__group-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.mobile-content__group-container {
    gap: 24px;
}

.mobile-content__group-text {
    padding: 5px;
    font-size: 14px;
    width: 100%;
    text-align: left;
    vertical-align: center;
    font-weight: 600;
}

.mobile-content__element {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mobile-content__element-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #eeeeee;
    border-radius: 5px 5px 0 0 ;
    flex: 1;
    width: 100%;
}
.mobile-content__element-body {
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    background-color: white;
    width: 100%;
    padding: 0 12px;
    border-radius: 0 0 5px 5px;
}

.mobile-content__element-name,.mobile-content__element-name-id {
    font-size: 1.7rem;
}

.mobile-content__element-name {
    /*margin-right: 24px;*/
    font-weight: 600;
    color: #383838;
    flex: 1;
}

.mobile-content__element-name-id {
    font-weight: 600;
    color: #2DC574;
    text-align: right;
    font-size: 1.7rem;
}

.mobile-content__element-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    font-weight: 600;
}

.mobile-content__element-item {
    border-bottom: 1px solid rgba(162, 162, 162, 0.5);
}
.mobile-content__element-item.last {
    border-bottom: none;
}


.mobile-content__data-source-container {
    display: flex;
    flex-direction: column;
    max-width: 200px;
    align-items: flex-end;
    text-align: right;
    font-size: 1.6rem;
}

.interest-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-height: 100px;
    overflow-y: auto;
    
    @media (max-width: 860px) {
        max-height: 200px;
    }
}
.interest-elem {
    font-size: 1.2rem;
    padding: 5px 8px;
    background: #2DC574;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}
.interest-elem::after {
    content: '✕';
    font-size: 1.1rem;
    vertical-align: middle;
    margin-left: 8px;
    
}

.interest-elem-2 {
    font-size: 1.2rem !important;
    padding: 5px 8px;
    background: #2DC574;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.interest-elem:hover {
    opacity: 0.7;
}
.interest-elem-2 span {
    font-size: 1.4rem !important;
}
.mobile-content__element-add {
    background: #2DC574;
    color: white;
    display: flex;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    width: 100%;
    border-radius: 0 0 3px 3px;
}

.mobile-content-select-all {
    padding: 5px;
    width: 100%;
    text-align: left;
    font-size: 1.8rem;
    color: #2DC574;
    font-weight: 600;
}

.price-page__form {
    margin-top: 36px;
    width: 100%;
    padding: 26px;
    background: white;
    border-radius: 5px;
    
    @media(max-width: 860px) {
        padding: 12px;
        margin-top: 24px;
    }
    
}

.price-page__form-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;

    @media(max-width: 860px) {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}
.price-page__form-left {
    flex: 1;
}
.price-page__form-left h2 {
    font-size: 2.5rem;
    line-height: 125%;
}
.price-page__form-right {
    width: 65%;
    margin-left: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    align-items: flex-end;

    @media(max-width: 860px) {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        margin-left: 0;
    }
}

.price-page__input-form {
    width: 100%;
}

.price-page__input, .price-page__input::placeholder {
    font-size: 1.3rem !important;
}

.price-page__input-form label {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    justify-content: center;
    
}

.price-page__input-form label span {
    font-weight: 600 !important;
}
.price-page__input-form label input {
    flex: 1;
    width: 100%;
    font-size: 1.8rem;
    padding: 5px 10px;
    border: 1px solid #dedede;
    outline: none;
    border-radius: 3px;
    
}

.price-page__input-form label input:focus {
    border: 1px solid #2DC574;
    box-sizing: border-box;
}

.price-page__input-form label input:active {
    border: 1px solid #79e0a5;
}

.price-page__agreement-and-send label {
    height: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
}

.custom-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.price-page__feedback-response {
    color: #ef3434;
    font-size: 1.4rem;
    font-weight: 600;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(359deg);
    }
}
.custom-spin {
    animation: spin;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.custom-loader {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 300px;
    height: 100%;
    
}

.custom-loader-small {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 100px;
    height: 100%;

}

.price-page__footer {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 1.5rem;
    justify-content: space-between;

    @media (max-width: 860px) {
        flex-direction: column;
    }
}

.price-page__reg-btn {
    padding: 12px 24px;
    max-width: 200px;
    color: white;
    font-size: 1.4rem;
    border-radius: 5px;
    outline: none !important;
    border: none;
    background: #2DC574;
    cursor: pointer;

    @media (max-width: 860px) {
        width: 400px;
    }
}

.price-page__reg-btn:active {
    border: none;
}

.price-page__reg-btn:hover {
    transition: 0.3s;
    background: #79e0a5;
}

.price-page__info {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 5px;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: 500;

    @media (max-width: 860px) {
        margin-top: 12px;
        gap: 12px;
        padding: 8px 10px;
    }
}

.price-page__info-round {
    padding: 8px;
    border-radius: 50%;
}

.info--success {
    background: rgba(159, 241, 193, 0.6);
    color: #279f5f;
}
.info-round--success {
    background: #98f1c2;
}

.info--info {
    background: rgba(118, 198, 239, 0.3);
    color: #347798;
}
.info-round--info {
    background: rgb(194, 223, 244);
}

.telegram {
    text-decoration: none;
}
.telegram:hover {
    color: #2DC574;
    transition: 0.5s;
}

.main-form__container {
    max-width: 1238px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 12px 12px;
}