.fx-card {
    -webkit-border-radius: var(--theme-var-content_rad);
    -ms-border-radius: var(--theme-var-content_rad);
    border-radius: var(--theme-var-content_rad);
    box-shadow: 0 3px 20px #1d26260d;
    padding: calc(var(--theme-var-grid_gap) +(var(--theme-var-grid_gap_koef)* 1px)) 10px calc(var(--theme-var-sm_grid_gap) +(var(--theme-var-grid_gap_koef)* 5px));
    background-color: var(--theme-color-content_bg);
}
.fx-card-title {
    padding: 20px 15px;
}
.fx-card-title h3 {
    margin: 0;
}
.fx-card-line {
    display: flex;
    padding: 12px 15px;
    border-top: 1px solid gray;
}
.fx-card-line-item {
    min-width: 10rem;
}
.fx-card-content .chart-card {
    background-color: transparent !important;
}
.fx-card-content .chart-card .chart-box {
    box-shadow: none !important;
}
.fx-space-between {
    justify-content: space-between;
}
.fx-ta-right {
    text-align: right;
}
.fx-ta-left {
    text-align: left;
}
.fx-ta-center {
    text-align: center;
}
.fx_status_section {
    padding: 20px;
}
.fx_status_section_line_1 {
    display: flex;
    justify-content: space-between;
}
.fx_status_section_line_2 {
    margin-bottom: 5px;
}
.fx_status_section_line_2 span:first-child {
    margin-right: 10px;
}
.fx_status_section_line_3 {
    display: flex;
    gap: 1.25rem;
}
.fx_status_section_line_3 .fx_badge {
    display: flex;
    flex-direction: column;
    padding: 8px;
    min-width: 200px;
    background-color: #00000099;
    color: white;
    border-radius: 10px;
}
.fx_skeleton {
    min-width: 100px;
    min-height: 15px;
    display: inline-block;
    border-radius: 4px;
    background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
    animation: leftToRight 1.5s infinite reverse;
    background-size: 200%;
}
.fx_order_challenge {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.fx_order_challenge .fx-card {
    /*flex-basis: 100%;*/
    width: 50%;
    padding: 0px 15px 15px 15px;
}
.fx_order_challenge .fx-card-title {
    padding: 15px 0px 15px 0px;
}
.fx_order_challenge .fx_decision_title {
    padding: 10px 0px 10px 10px;
    font-size: 18px;
}
.fx_order_challenge .fx_decision_row {
    display: flex;
    flex-wrap: wrap;
    /*gap: 8px;*/
}
.fx_order_challenge .fx_decision_row button {
    margin: 5px !important;
}
.fx_order_challenge .fx_decision_row .fx_skeleton {
    min-width: 207px;
    min-height: 41px;
    display: inline-block;
    border-radius: var(--theme-var-rad);
    background: linear-gradient(90deg, #f6f9ff, #ebf2ff, #f6f9ff);
    animation: leftToRight 1.5s infinite reverse;
    background-size: 200%;
    margin: 5px !important;
}
.fx_order_challenge .fx_decision_row button[disabled] {
    cursor: not-allowed !important;
}
.fx_order_challenge .fx_button_addon_container {
    display: flex;
    flex-direction: column;
}
.fx_order_challenge .fx_button_addon_container .fx_button_addon {
    display: flex;
    justify-content: space-between;
}
.fx_form [fx-error] {
    color: red;
    font-size: 14px;
    margin-left: 20px;
}
.fx_form .fx_label_input {
    display: flex;
    flex-direction: column;
    padding-top: 6px;
    padding-bottom: 6px;
}
.fx_form .fx_label_input label {
    padding-left: 13px;
}
.fx_form .fx_label_input .fx_input input, .fx_form .fx_label_input .fx_input select {
    width: 100%;
}
.fx_form .fx_label_input .fx_checkbox_label {
    display: flex;
    cursor: pointer;
}
.fx_form .fx_label_input .fx_checkbox_label span {
    padding-left: 10px;
}
.fx_form .fx_price_summary {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.fx_form .fx_price_summary_line {
    display: flex;
    justify-content: space-between;
}
.fx_form .fx_price_summary_line_right {
    font-weight: 600;
}
.fx_form .fx_create_order_button {
    width: 100%;
}
.fx_form .fx_activate_discount {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.fx_form [StatesContent] .fx_skeleton {
    width: 100%;
    min-height: 41px;
    display: inline-block;
    border-radius: var(--theme-var-rad);
    background: linear-gradient(90deg, #f6f9ff, #ebf2ff, #f6f9ff);
    animation: leftToRight 1.5s infinite reverse;
    background-size: 200%;
    margin: 5px !important;
}

@keyframes leftToRight {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}