.firmwareconfigurator
{
    border: 1px dashed #DDDDDD;
    padding: 0 15px;
    margin-top: 15px;
    padding-bottom: 15px;
    background: #f1f1f1;
}

.product-prices
{
    display: none!important;
}

.tree_options
{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tree_option
{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tree_option.tree_option_type_checkbox
{
    width: 100%;
}

.options_label, .tree_options_label, .file_label
{
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 15px;
}

.tree_option .tree_option_elem
{
    width: 100%;
}

.tree_option .tree_option_elem select
{
    width: 100%;
}

.tree_option .tree_option_elem .tree_option_name
{
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 5px;
}

.tree_option .tree_option_elem .switch:not(:first-child)
{
    margin-left: 15px;
}

.options
{
    display: flex;
    align-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.options > div
{
    width: 20%;
    text-align: left;
}

.options > div > span.option_text
{
    text-transform: uppercase;
    font-size: 12px;
    display: inline-block;
    padding-right: 10px;
}

.text_field
{
    margin-top: 15px;
}

.text_field textarea
{
    width: 100%;
    height: 35px;
    border: 0;
}

.text_field textarea:focus,
.text_field textarea:active,
.text_field textarea:hover
{
    outline: none;
}

.product-add-to-cart
{
    display: none;
}

.add_to_cart_row
{
    margin-top: 15px;
    text-align: right;
}

.add_to_cart_row .add_to_cart_btn
{
    background: #5ac394;
    border: 1px solid #419b72;
    padding: 7px 15px;
    font-size: 15px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.add_to_cart_row .add_to_cart_btn:hover,
.add_to_cart_row .add_to_cart_btn:active,
.add_to_cart_row .add_to_cart_btn:focus
{
    background: #69e3ab;
    border: 1px solid #4fbb8a;
    outline: none;
    cursor: pointer;
}

.firmwareconfigurator .price_row
{
    font-size: 24px;
    padding: 15px 0;
    font-weight: bolder;
    color: #ad1313;
    text-align: right;
    text-transform: uppercase;
}

.firmwareconfigurator .response-messages .error-messages,
.firmwareconfigurator .response-messages .success-messages
{
    padding: 15px;
    margin-top: 15px;
}

.firmwareconfigurator .response-messages .error-messages
{
    border: 1px dashed #af1c1c;
    background: #ffb1b1;
    color: #af1c1c;
}

.firmwareconfigurator .response-messages .success-messages
{
    border: 1px dashed #16804b;
    background: #a0ffcd;
    color: #16804b;
}

.firmwareconfigurator .specify_car_features
{
    display: flex;
    gap: 15px;
    justify-content: center;
}

.firmwareconfigurator .specify_car_features .column
{
    width: 25%;
}

.firmwareconfigurator .specify_car_features .text_label
{
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 15px;
}

.firmwareconfigurator .specify_car_features .text_row input[type="text"]
{
    border: 0;
    width: 100%;
    line-height: 27px;
}

.firmwareconfigurator .tree_option .tree_option_text
{
    display: inline-block;
    padding-right: 10px;
    position: relative;
    top: -7px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 21px;
    margin-bottom: 0;
}

.switch .switch_yes,
.switch .switch_no
{
    position: absolute;
    right: 4px;
    z-index: 2;
    font-size: 10px;
    color: #FFFFFF;
    font-weight: bolder;
}

.switch .switch_yes
{
    display: none;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch input:checked ~ .switch_yes
{
    display: inline-block;
    left: 4px;
    right: inherit;
}

.switch input:checked ~ .switch_no
{
    display: none;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cb2020;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked ~ .slider {
    background-color: #1aa976;
}

input:focus ~ .slider {
    box-shadow: 0 0 1px #1aa976;
}

input:checked ~ .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.tree_option_children,
.text_field_hidden,
.firmwareconfigurator .specify_car_features.specify_car_features_hidden,
.additional_file_field_hidden
{
    display: none;
}

.tree_option_checkboxes
{
    display: flex;
    flex-wrap: wrap;
}

.tree_option_checkboxes .checkbox-option
{
    width: 20%;
}

.tree_option_checkboxes .checkbox-option.checkbox-grow-style-4
{
    width: 25%;
}

.tree_option_checkboxes .checkbox-option.checkbox-grow-style-3
{
    width: 33.3%;
}

.tree_option_checkboxes .checkbox-option.checkbox-grow-style-2
{
    width: 50%;
}

.tree_option_checkboxes .checkbox-option.checkbox-grow-style-1
{
    width: 100%;
}

/* checkbox style */
.checkbox-wrapper-19 {
    box-sizing: border-box;
    --background-color: #fff;
    --checkbox-height: 25px;
    position: relative;
    bottom: -7px;
    margin-right: 5px;
}

@-moz-keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@-webkit-keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

@-webkit-keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

@-moz-keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

.checkbox-wrapper-19 input[type=checkbox] {
    width: 0px;
    height: 0px;
}

.checkbox-wrapper-19 .check-box {
    height: var(--checkbox-height);
    width: var(--checkbox-height);
    background-color: transparent;
    border: calc(var(--checkbox-height) * .1) solid #000;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
    margin-bottom: 0;
}
.checkbox-wrapper-19 .check-box::before,
.checkbox-wrapper-19 .check-box::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    height: 0;
    width: calc(var(--checkbox-height) * .2);
    background-color: #34b93d;
    display: inline-block;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 5px;
    content: " ";
    -webkit-transition: opacity ease 0.5;
    -moz-transition: opacity ease 0.5;
    transition: opacity ease 0.5;
}
.checkbox-wrapper-19 .check-box::before {
    top: calc(var(--checkbox-height) * .72);
    left: calc(var(--checkbox-height) * .41);
    box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.checkbox-wrapper-19 .check-box::after {
    top: calc(var(--checkbox-height) * .37);
    left: calc(var(--checkbox-height) * .05);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box,
.checkbox-wrapper-19 .check-box.checked {
    border-color: #34b93d;
}
.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::after,
.checkbox-wrapper-19 .check-box.checked::after {
    height: calc(var(--checkbox-height) / 2);
    -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    animation: dothabottomcheck-19 0.2s ease 0s forwards;
}
.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::before,
.checkbox-wrapper-19 .check-box.checked::before {
    height: calc(var(--checkbox-height) * 1.2);
    -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
    -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
    -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
    animation: dothatopcheck-19 0.4s ease 0s forwards;
}

 .checkbox-wrapper-30 .checkbox {
     --bg: #fff;
     --brdr: #d1d6ee;
     --brdr-actv: #1e2235;
     --brdr-hovr: #bbc1e1;
     --dur: calc((var(--size, 2)/2) * 0.6s);
     display: inline-block;
     width: calc(var(--size, 1) * 22px);
     position: relative;
 }
.checkbox-wrapper-30 .checkbox:after {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}
.checkbox-wrapper-30 .checkbox > * {
    position: absolute;
}
.checkbox-wrapper-30 .checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    background-color: var(--bg);
    border-radius: calc(var(--size, 1) * 4px);
    border: calc(var(--newBrdr, var(--size, 1)) * 1px) solid;
    color: var(--newBrdrClr, var(--brdr));
    outline: none;
    margin: 0;
    padding: 0;
    transition: all calc(var(--dur) / 3) linear;
}
.checkbox-wrapper-30 .checkbox input:hover,
.checkbox-wrapper-30 .checkbox input:checked {
    --newBrdr: calc(var(--size, 1) * 2);
}
.checkbox-wrapper-30 .checkbox input:hover {
    --newBrdrClr: var(--brdr-hovr);
}
.checkbox-wrapper-30 .checkbox input:checked {
    --newBrdrClr: var(--brdr-actv);
    transition-delay: calc(var(--dur) /1.3);
}
.checkbox-wrapper-30 .checkbox input:checked + svg {
    --dashArray: 16 93;
    --dashOffset: 109;
}
.checkbox-wrapper-30 .checkbox svg {
    fill: none;
    left: 0;
    pointer-events: none;
    stroke: var(--stroke, var(--border-active));
    stroke-dasharray: var(--dashArray, 93);
    stroke-dashoffset: var(--dashOffset, 94);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    top: 0;
    transition: stroke-dasharray var(--dur), stroke-dashoffset var(--dur);
}
.checkbox-wrapper-30 .checkbox svg,
.checkbox-wrapper-30 .checkbox input {
    display: block;
    height: 100%;
    width: 100%;
}
/* end checkbox style */
