.d-flex {
    display: flex;
}
.gap-6{
    gap: 6px;
}
.t-center {
    text-align: center;
}

.flex-grow-1{
    flex-grow: 1;
}
.w-100{
    width: 100%;
}
.d-none{
    display: none;
}

.tabs-custom {
    display: flex;
    flex-wrap: wrap;
    margin: -5px -5px 10px -5px ;
}
.tabs-custom-item {
    padding: 5px;
    flex: 0 0 25%;
    min-width: 25%;
}
.tabs-custom .tab {
    position: relative;
    height: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(203, 222, 241, 1);
    border-radius: 14px;
}

.tabs-custom .tab .tab-content-custom {
    margin-top: 5px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    min-height: 2.8em;
}
.tabs-custom .tab.active .tab-content-custom {
    color: #fff;
}
.tabs-custom .tab.active {
    background-color: rgba(0, 87, 184, 1);
}

.tab input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.tab label {
    display: block;
    text-align: left;
    cursor: pointer;
    color: rgba(5, 5, 5, 1);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2em;

}
.tab input[type="radio"]:checked + label {
    background-color: rgba(0, 87, 184, 1);
    color: white;
}

@media (max-width: 1199px) {
    .tabs-custom-item {
        flex: 0 0 50%;
        min-width: 50%;
    }
}
@media (max-width: 767px) {
    .tabs-custom .tab-content-custom {
        display:none;
    }
    .tabs-custom .tab{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .tab label{
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 16px;
    }
}
@media (max-width: 499px) {
    .tab label{
        font-size: 14px;
        min-height: 2.4em;
    }
}



.app-content {
    display: flex;
    gap: 10px;
}
.app-panel {
    position: relative;
    flex: 1 0 40%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 20px 16px 20px;
    border: 1px solid rgba(203, 222, 241, 1);
    border-radius: 10px;
    background: #fff;
    min-width: 272px;
}
@media (max-width: 1199px) {
    .app-content {
        flex-direction: column;
        gap: 16px;
    }
    .app-panel{
        flex: 0 0 auto;
    }
}

.app-panel-inner{
    margin-bottom: -16px;
}

.app-panel-columns{
    columns: 2;
    column-gap: 10px;
}

/*.app-panel-order-sm-1{*/
/*    background: #0ff;*/
/*}*/
@media (max-width: 767px) {
    .app-panel-columns{
        display: flex;
        flex-direction: column;
    }
    .app-panel-order-sm-1{
        order: 1;
    }
}

.app-panel-columns-no-break{
    break-inside: avoid-column;
}
.app-panel-columns-break{
    break-after: column;
}

.app-panel img {
    max-height: 450px;
    max-width: 100%;
}
.app-panel h3 {
    font-size: 18px;
    line-height: normal;
    text-align: center;
}

.app-panel-preview {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 16px;
    min-height: 280px;
    color: #000;
    padding: 25px 10px;
    border: 1px solid rgba(203, 222, 241, 1);
    border-radius: 10px;
    background: rgba(244, 249, 255, 1);
}

.app-panel-preview.active {
    background: transparent;
    align-items: center;
}


.app-panel svg > g + .psc-under-text-title tspan {
    font-weight: 700;
}

@media (max-width: 430px) {
    .psc-under-text-title {
        font-size: 24px;
    }
}

.app-button {
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    background: rgba(0, 87, 184, 1);
    border: 1px solid rgba(0, 87, 184, 1);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    transition: 0.3s ease;
}

.app-button.app-button-outline {
    border: 1px solid rgba(203, 222, 241, 1);
    background: rgba(244, 249, 255, 1);
    color: rgba(0, 87, 184, 1);
    transition: 0.3s ease;
}

.app-button.app-button-outline.app-button-hover:hover,
.app-button.app-button-outline.app-button-hover:focus{
    background: rgba(0, 87, 184, 1);
    border: 1px solid rgba(0, 87, 184, 1);
    color: rgba(255, 255, 255, 1);
    transition: 0.3s ease;
}
.app-button.app-button-hover:hover,
.app-button.app-button-hover:focus{
    border: 1px solid rgba(203, 222, 241, 1);
    background: rgba(244, 249, 255, 1);
    color: rgba(0, 87, 184, 1);
    transition: 0.3s ease;
}

.app-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.app-button-icon img,
.app-button-icon svg{
    display: block;
    max-height: 24px;
    max-width: 24px;
}

@media (max-width: 767px) {
    .app-button{
        padding-left: 8px;
        padding-right: 8px;
    }
    .app-button .app-button-xs-hidden{
        display: none;
    }
}


.app-panel-buttons {
    display: flex;
    margin-left: -3px;
    margin-right: -3px;
}

.app-panel-buttons .app-button{
    width: 100%;
}

.app-panel-buttons-item {
    padding: 3px;
}
.app-panel-buttons-item-grow{
    flex: 1;
}
.app-panel-buttons-item-half{
    flex: 0 0 50%;
}
.app-panel-buttons-divider{
    flex: 0 1;
}
@media (max-width: 767px) {
    .app-panel-buttons-item-half{
        flex: 1;
    }
}
@media (max-width: 399px) {
    .app-panel-buttons{
        flex-wrap: wrap;
    }
    .app-panel-buttons-divider{
        flex: 1 0 100%;
        min-width: 100%;
    }
}

.table-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-left: -3px;
    margin-right: -3px;
    justify-content: space-between;
}
.table-tabs__item{
    padding: 3px;
    flex: auto;/*0 0 20%*/
}
.table-tabs .app-button{
    width: 100%;
}
@media (max-width: 767px) {
    .table-tabs__item{
        flex: 0 0 50%;
    }
}
@media (max-width: 767px) {
    .table-tabs__item:nth-child(5){
        flex: 0 0 100%;
    }
}

.height-f-a-w {
    height: -webkit-fill-available;
}
.height-f-a-w-dop {
    height: 100%;
    align-content: space-between;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    flex-direction: column;
}

.height-f-a-w-dop h3 {
    margin-bottom: 3rem;
}
.height-f-a-w-dop .app-panel-buttons {
    flex-direction: column;
}

.t-align-center {
    text-align: center;
}

/*|||*/


.buttons{
    margin-bottom: 20px;
}

#PromiseAlert .modal-dialog {
    top: 25%;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; /* Скрыто по умолчанию */
}

#PromiseAlert .catalog-block__info-bottom--margined {
    margin-top: 0;
    display: inline-block;
}

#PromiseAlert .custom-closest-info {
    vertical-align: middle;
    margin: 0;
    position: relative;
    top: -35px;
    bottom: auto;
    right: -3px;
}

#PromiseAlert.modal {
    background: transparent;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
}

div[data-d3jsnpsh] {
    display:none!important;
}



.panel-header {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 22px;
    line-height: 26.63px;
    color: rgba(0, 87, 184, 1);
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: rgba(5, 5, 5, 1);
}

.form-group label.additional-param-button-label{
    visibility: hidden;
}
@media (max-width: 767px) {
    .form-group label.additional-param-button-label{
        display: none;
}
}


.buy_block .btn {
    white-space: normal;
    max-width: 100%;
    text-overflow: ellipsis;
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.ratings .item-rating .svg svg path {
    fill: #f5eded;
}
.ratings .item-rating.filed .svg svg path {
    fill: rgba(0, 87, 184, 1)
}

.votes_block {
    border: 1px solid rgba(203, 222, 241, 1);
    border-radius: 8px;
    padding: 12px 16px;
    background: rgba(244, 249, 255, 1);
}

form .rating_message:before {
    display:none;
}

form .rating_message {
    margin: 0 0 0 20px;
    position: relative;
    padding: 0 0 0 30px;
    color: #0057b8;
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
}

.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group .uploader,
.form-group textarea,
.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 13px 16px 11px 16px;
    border: 1px solid rgba(203, 222, 241, 1);
    box-sizing: border-box;
    border-radius: 8px;
    background: rgba(244, 249, 255, 1);


    font-size: 14px;
    line-height: 16px;
    color: rgba(5, 5, 5, 1);
    font-weight: 400;
}

.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group input[type=number] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


.uploader .filename {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 87, 184, 1);
    padding-top: 5px;
    padding-bottom: 5px;
}

.form-group .uploader:before {
    display:none;
}

.js-hide {
    position: relative;
}


#app .data-table {
    width: max-content;
    border-collapse: collapse;
    margin-top: 0;
    padding-bottom: 10px;
    overflow-x: scroll;
    max-width: inherit;
}

#app .data-table th,
#app .data-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    background: #fff;
}
#app .data-table .selected-row td {
    background-color: #5488c2;
}

#app .data-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}

.order-button,
.download-button {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-button {
    background-color: #4caf50;
    color: white;
}

.download-button {
    background-color: rgba(0, 87, 184, 1);
    color: white;
}

.review{
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: #ddd;
    color: #555;
    margin-right: 10px;
}

.download-button[disabled],
#spec-passport[disabled]{
    opacity: 0.5;
    background: rgba(0, 87, 184, 1);
    pointer-events:none;
}

.d-flex .unit-select select {
    height: -webkit-fill-available;
    min-width: 90px;
    width: -webkit-fill-available;
}

#app .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#app .popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 460px;
    position: relative;
    max-height: 100%;
    overflow-y: auto;
}

#app .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

#app .popup-tabs {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}

#app .popup-tab {
    gap: 10px;
    padding-top: 11px;
    padding-right: 16px;
    padding-bottom: 11px;
    padding-left: 16px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    background: rgba(244, 249, 255, 1);
    border-style: solid;
    border-color: rgba(203, 222, 241, 1);
    color: rgba(0, 87, 184, 1);
    width: -webkit-fill-available;

    font-weight: 500;
}
#app .popup-tab + .popup-tab {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    background: rgba(244, 249, 255, 1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: 146px;
}

#app .popup-tab.active {
    background-color: rgba(0, 87, 184, 1);
    color: white;
}

#app .popup-form .form-group,
#app .popup-tech .form-group {
    margin-bottom: 15px;
}

#app .popup-form label,
#app .popup-tech label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#app .popup-form select,
#app .popup-form input[type="text"],
#app .popup-form input[type="number"],
#app .popup-tech select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#app .save-button {
    padding: 10px 20px;
    background-color: rgba(0, 87, 184, 1);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#app .download-passport:hover {
    color: #fff;
}

#app .download-passport {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#app .download-passport:hover {
    background-color: #0056b3;
}

#app .popup-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between; /* Располагаем заголовок и кнопку по краям */
    align-items: center; /* Выравниваем по вертикали */
}

#app .popup-header h2 {
    margin: 0;
}
#app .popup-header.popup-header-custom h2 {
    max-width: 360px;
}

#app .close-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

#app .reset-button-custom {
    border-radius: 10px;
    padding-top: 11px;
    padding-right: 16px;
    padding-bottom: 11px;
    padding-left: 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    width: 100%;
    border: 1px solid rgba(203, 222, 241, 1);
    background: rgba(244, 249, 255, 1);
    color: rgba(0, 87, 184, 1);
}
#app .save-button {
    background: rgba(0, 87, 184, 1);
    border-radius: 10px;
    padding-top: 11px;
    padding-right: 16px;
    padding-bottom: 11px;
    padding-left: 16px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    width: 100%;
}

#app .download-passport {
    border: 1px solid rgba(203, 222, 241, 1);
    background: rgba(244, 249, 255, 1);
    border-radius: 10px;
    border-width: 1px;
    padding-top: 11px;
    padding-right: 16px;
    padding-bottom: 11px;
    padding-left: 16px;

    color: rgba(0, 87, 184, 1);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    width: 100%;
}

#app label.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#app label.custom-checkbox input {
    display: none; /* Скрываем стандартный чекбокс */
}

#app .checkmark {
    width: 20px;
    height: 20px;
    background-color: #eee;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
}

#app label.custom-checkbox input:checked + .checkmark {
    background-color: rgba(0, 87, 184, 1); /* Цвет при выборе */
}

#app .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

#app .custom-checkbox input:checked + .checkmark:after {
    display: block;
}

#app .custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#app .custom-graph-input {
    margin-top: 20px;
}

#app .custom-graph-input table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#app .custom-graph-input th,
#app .custom-graph-input td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

#app .custom-graph-input th {
    background-color: #f5f5f5;
    font-weight: bold;
}

#app .custom-graph-input input[type="number"] {
    width: 80px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.custom-graph-input h5 {
    margin-bottom: 1rem;
    font-size: 16px;
}

#app .data-table thead tr th {
    background: rgba(0, 87, 184, 1);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    border: 0;
    border-right: 1px solid rgba(203, 222, 241, 1);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

#app .data-table tr th:first-child,
#app .data-table tr td:first-child {
    display:none!important;
}

#app .data-table thead tr th:nth-child(2),
#app .data-table thead tr th:first-child {
    border-top-left-radius: 15px;

}

#app .data-table thead tr th:last-child {
    border-top-right-radius: 15px;
    border: 0;
}

#app .data-table-custom {
    position: relative;
    margin-top: 20px;
    padding-bottom: 10px;
    overflow-x: scroll;
    margin-bottom: 10px;
    overflow-y: scroll;
    max-height: 600px;
}

.catalog-block__info-bottom--margined {
    margin-top: 2rem;
}

.multiselect__element:before {
    display:none;
}

#app .multiselect__content .multiselect__option:after,
#app .multiselect__content .multiselect__option span:after {
    display:none;
}

#app input.multiselect__input {
    min-width: auto;
    border: 0;
    padding: 0;
}

.selected-row .download-button {
    background-color: white; /* Highlight color */
    color: #0057b8; /* Text color */
}
.selected-row {
    background-color: #0057b8; /* Highlight color */
    color: white; /* Text color */
}

#app tr,
#app td {
    cursor:pointer;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-color: rgba(0, 0, 0, 0.5);*/ /* Полупрозрачный черный фон */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Убедитесь, что overlay выше остального контента */
}

.loader {
    width: 62px; /* Ширина иконки загрузки */
    height: 60px; /* Высота иконки загрузки */
    /*border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;*/
    animation: spin 4s linear infinite; /* Анимация вращения */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#app .checkmark {
    position: absolute;
    right:0;
    margin:0;
}

#app .form-group select {
    height: 42px;
}

div.multiselect__select {
    width: 22px;
}
#app .multiselect__content,
.multiselect__element,
.custom-width-select {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#app .multiselect__content .multiselect__option span,
.multiselect__element,
.custom-width-select option {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.form-group .unit-select select::-ms-expand {
    display: none;
}
.form-group .unit-select select {
    min-width: auto;
}
.form-group select.dis-full {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

body {
    background: rgba(244, 249, 255, 1)!important;
}

.page-top.maxwidth-theme {
    padding-bottom: 15px;
}
.multiselect__tags{
    min-height: 42px;
    padding: 9px 40px 0 8px;
}
.unit-select .multiselect__tags {
    width: 80px;
    height: 42px;
    padding: 9px 25px 0 8px;
}

.unit-select input {
    max-width: 80px;
}

#app .popup-form .multiselect__tags input[type="text"] {
    border: 0;
    padding: 0;
}

.btn.btn-default.btn-default-custom.btn-md.btn-transparent-border.bg-theme-target.border-theme-target {
    border: 1px solid rgba(203, 222, 241, 1);
    background: rgba(244, 249, 255, 1);
    border-radius: 10px;
    color: rgba(0, 87, 184, 1);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    padding-top: 11px;
    padding-right: 16px;
    padding-bottom: 11px;
    padding-left: 16px;
}
.btn.btn-default.btn-default-custom.btn-md.btn-transparent-border.bg-theme-target.border-theme-target:hover,
.btn.btn-default.btn-default-custom.btn-md.btn-transparent-border.bg-theme-target.border-theme-target:focus {
    color: #ffffff;
    background-color: var(--theme-base-color);
    border: 1px solid var(--theme-base-color);
}
.btn.btn-default.btn-default-custom.btn-md.btn-transparent-border.bg-theme-target.border-theme-target:hover svg path,
.btn.btn-default.btn-default-custom.btn-md.btn-transparent-border.bg-theme-target.border-theme-target:focus svg path{
    stroke: #ffffff;
}

.unit-select span.multiselect__single {
    font-size: 14px;
    line-height: 16px;
    color: rgba(5, 5, 5, 1);
    font-weight: 400;
}

#app .modal-footer {
    border-top: 0;
}

#app select:disabled {
    opacity: 1;
    width: 80px;
}
#app select[disabled] > option {
    color: #444;
}

#app .popup .buy_block .btn {
    border: 0;
    padding: 0;
    min-width: 130px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    background: none !important;
    color: rgba(0, 87, 184, 1);
    line-height: normal;
}

#app .modal-footer.d-flex:before {
    display:none!important;
}
#app .modal-footer.d-flex {
    padding: 0;
}

#app .popup .buy_block .btn.reset-button {
    border: 1px solid rgba(203, 222, 241, 1);
    background: rgba(244, 249, 255, 1);
    gap: 10px;
    border-radius: 10px;
    padding-top: 11px;
    padding-right: 16px;
    padding-bottom: 11px;
    padding-left: 16px;
    color: rgba(0, 87, 184, 1);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    min-width: 160px;
}
#app .popup .buy_block .btn.reset-button.save-button {
    background: rgba(0, 87, 184, 1)!important;
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(244, 249, 255, 1);
}

.jqmWindow {
    border-radius: 10px;
}

.jqmWindow .form.popup .form-header {
    padding: 20px;
    padding-bottom: 0;
}
.jqmWindow .form.popup .form-footer {
    padding: 20px;
    padding-top: 0;
}

.jqmWindow .form.popup .form-body {
    padding: 20px;
    padding-bottom: 0;
}
.jqmWindow .form .form-footer .btn {
    background: rgba(0, 87, 184, 1);
    gap: 10px;
    border-radius: 10px;
    padding-top: 11px;
    padding-right: 16px;
    padding-bottom: 11px;
    padding-left: 16px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.jqmWindow .form .form-header .title {
    font-size: 2em;
    line-height: calc(1em + 14px);
}
.app-panel-buttons.app-panel-buttons-tech-custom.app-panel-buttons-tech-custom-sh {
    flex-direction: column;
}

.app-panel-buttons-tech-custom.app-panel-buttons-tech-custom-sh .app-button.app-button-outline {
    justify-content: center;
    padding: 10px 10px;
}

.app-panel-buttons-tech-custom .app-panel-buttons-item-grow {
    text-align: center;
}
.app-panel-buttons-tech-custom .app-panel-buttons-item-grow-center .app-button.app-button-outline {
    justify-content: center;
}

.app-panel-buttons-tech-custom .app-button.app-button-outline {
    display: flex;
    align-items: end;
    gap: 5px;
    justify-content: left;
    padding: 5px 10px;
}


@media (max-width: 568px) {
    .app-panel-buttons-tech-custom.app-panel-buttons-tech-custom-sh .app-button,
    .app-panel-buttons-tech-custom .app-button.app-button-outline {
        font-size: 12px;
        line-height: normal;
    }
    .app-panel-buttons-tech-custom .app-button.app-button-outline svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 415px) {
    .app-panel-buttons-tech-custom.app-panel-buttons-tech-custom-sh .table-tabs-custom .table-tabs__item{
        flex: 0 0 100%;
    }
}

.app-button-custom-download.app-button {
    position: relative;
    padding-left: 40px;
}
.app-button-custom-download.app-button svg  {
    position: absolute;
    left: 15px;
    top: 8px;
}


.app-button-custom-download.app-button:not(.app-button-outline) svg path {
    stroke: #fff;
}
@media (min-width: 768px) {
    .app-panel-buttons.app-panel-buttons-tech-custom.app-panel-buttons-tech-custom-sh .app-panel-buttons-item,
    .app-panel-buttons.app-panel-buttons-tech-custom.app-panel-buttons-tech-custom-sh .table-tabs__item {
        max-width: 33%;
    }
}

.app-panel-buttons-tech-custom.app-panel-buttons-tech-custom-sh a.app-button.app-button-outline {
    padding: 8px 10px;
}


.app-panel-buttons-tech-custom .app-button.app-button-outline.app-button-outline-custom svg path {
    stroke: #fff;
}
.app-panel-buttons-tech-custom .app-button.app-button-outline.app-button-outline-custom {
    background: rgba(0, 87, 184, 1);
    border: 1px solid rgba(0, 87, 184, 1);
    color: rgba(255, 255, 255, 1);
}

.js-info-custom-3 {
    display: none;
    opacity: 0;
    height: 0;
    overflow: hidden;
    width: 0;
}

.app-panel-buttons-tech-custom-sh .table-tabs {
    justify-content: center;
}