input,
textarea,
select {
    width: 100%;
    margin: 0 0 10px;
    padding: 12px;
    outline: none;
    border: 2px solid #eee;
    background-color: #eee;
    border-radius: 0;
    overflow: auto; 
    font-family: inherit;
    font-size: inherit;
}
input[readonly]{
    opacity: .5;
    cursor: no-drop;
}
textarea {
    resize: vertical;
} 

[tog-onoff] {
    border: 0;
    cursor: pointer;
    border-radius: 6px;
    color: #fff
}

[tog-onoff][value="ON"] {
    background-color: #005c15
}

[tog-onoff][value="OFF"] {
    background-color: #640000
} 
 
.formbx.bx-base {
    --p: 30px;
    --w: 500px;
    border: 1px solid #ccc;
    padding: var(--p);
    background-color: #eee;
    max-width: var(--w)
}
@media (max-width: 575px) {
    .formbx.bx-base {
        --p: 15px
    }
}
.formbx.bx-rad {
    --rad: 3px;
    border-radius: var(--rad)
}
.formbx.bx-feld-rad :is(input, textarea, select, .textarea) {
    --rad: 6px;
    border-radius: var(--rad);
    max-width: 100%;
    width: 100%; 
    font-family: inherit;
} 
.formbx.bx-feld-rad :is(textarea) { 
        resize: vertical; 
} 
.formbx .inp-anc input { 
    pointer-events: none;
} 
.formbx .inp-anc .inpw {
    position: relative;
    z-index: 1;
}
.formbx .inp-anc .inpw:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    cursor: pointer; 
} 
/* ============================= */
/* ============================= */

 

/* ============================= */
/* ============================= */



/* ============================= */
/* ============================= */
.uis-w .slider-range-wrap {
    padding: 3px 12px 12px;
    z-index: 3;
}

.uis-w .ui-widget-header {
    height: 3px !important;
    background: var(--clr01);
    transform: translate(0, -50%);
}

.uis-w .ui-state-default,
.uis-w .ui-widget-content .ui-state-default,
.uis-w .ui-widget-header .ui-state-default {
    border: 2px solid var(--clr01);
    border-radius: 50%;
    background: #fff;
}

.uis-w .ui-widget-content {
    height: 1px !important;
    border: 0;
    background: #e0e0da;
    transform: translate(0, -50%);
    z-index: 10
}

.uis-w .ui-slider-horizontal .ui-slider-range1 {
    top: -2px;
}

.uis-w .ui-slider-horizontal .ui-slider-handle {
    top: 0;
    transform: translate(0, -50%);
    cursor: pointer;
}

.uis-w .ui-slider-handle {
    outline: none;
}

.uis-w .ui-slider-handle .amount {
    position: absolute;
    left: 0;
    bottom: 35px;
    display: none;
    width: 130px;
    padding: 10px 0;
    text-align: center;
    margin-left: -55px;
    font-weight: normal;
    font-size: 14px;
    color: #fff;
    border: 1px solid var(--clr01);
    background: var(--clr01);
}

.uis-w .ui-slider-handle .amount:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -11px;
    left: 50%;
    right: 0;
    width: 0;
    height: 0;
    margin-left: -5px;
    border-top: 5px solid var(--clr01);
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    background-color: transparent;
}

.uis-w .range-correspond {
    margin: 0 0 15px
}

.uis-w .range-correspond>div:nth-child(2):after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 2px;
    background-color: var(--clr01x, #ccc);
    transform: translate(-50%, -50%)
}

.uis-w .range-correspond>div:nth-child(2) {
    flex: 0 0 45px;
    max-width: 45px;
}

.uis-w .range-correspond>div {
    flex: 1 0 0;
}

.uis-w .min-range,
.uis-w .max-range {
    margin-top: 12px;
    font-size: 12px;
    color: #888;
}

.uis-w .min-range {
    transform: translate(-50%, 0)
}

.uis-w .max-range {
    transform: translate(50%, 0)
}

.uis-w .slider-range1-wrap {
    position: relative;
    width: 500px;
    height: 200px;
    margin: 0 auto;
    padding: 40px 20px 60px 0;
} 

/* ====================================== */
/* ====================================== */
 

.feld-spec-wrap {
    padding: 15px;
    background-color: #ccc;
    margin: 0 0 9px
}
 

.inp-such-w i {
    position: absolute;
    right: 0;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--clr01);
    color: #fff;
    width: 50px;
    cursor: pointer
}

.input-w:not(.anders) input {
    padding-right: 50px
}

/* ============================== */

:where(a, button)[class^="btn"] { 
    border-radius: 0;
    text-align: center;
    font-family: var(--btnft, inherit);
    transition: .4s all ease;
    cursor: pointer;
}

.btnbx {
    --gap: 6px;
    gap: var(--gap);

    &.btn-full{
        .btn{
            width: 100%;
        }
    }
}

.btn,
a.btn { 
    --btnbgclr: inherit;
    --btnbgclrhov: var(--btnbgclr);
    --btnclr: inherit;
    --btnclrhov: var(--btnclr);

    --btnborderwidth: inherit;
    --btnborderwidthhov: var(--btnborderwidth);
    --btnborderclr: inherit;
    --btnborderclrhov: var(--btnborderclr);
    --btnborderrad: 3px;
    --btnborderradhov: var(--btnborderrad);

    --btnfont: var(--ft-t1);
    --btnfontsize: inherit;
    --btn-minwidth: auto;
    --btnpad: 12px 30px;
    --borderwidth: 2px;
    --borderwidthhov: 2px;

    background-color: var(--btnbgclr);
    color: var(--btnclr);
    border: var(--borderwidth) solid var(--btnborderclr, #000);
    font-family: var(--btnfont);
    font-size: var(--btnfontsize);
    min-width: var(--btn-minwidth);
    border-radius: var(--btnborderrad);
    line-height: 1;
    padding: var(--btnpad);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    text-align: center;  
    cursor: pointer;
}

.btn.active,
.btn:hover {
    /*    box-shadow: 0 0 0 0px #fff inset;*/
    background-color: var(--btnbgclrhov);
    color: var(--btnclrhov);
    border: var(--borderwidthhov) solid var(--btnborderclrhov, #000); 
    border-radius: var(--btnborderradhov);
}  

.btn.btn-space-line {
    --btnbgclr: transparent;
    --btnbgclrhov: #333;
    --btnclr: #333;
    --btnclrhov: #fff; 
    --btnborderclr: var(--btnclr);
    --btnborderclrhov: var(--btnbgclrhov)
}
.btn.btn-space {
    --btnbgclr: transparent;
    --btnbgclrhov: #ddd;
    --btnclr: #333;
    --btnclrhov: #111; 
    --btnborderclr: var(--btnbgclr);
    --btnborderclrhov: var(--btnbgclrhov)
} 
.btn.btn-primary {
    --btnbgclr: #007bff;
    --btnbgclrhov: #0665ca;
    --btnclr: #fff;
    --btnclrhov: #fff; 
    --btnborderclr: var(--btnbgclr);
    --btnborderclrhov: var(--btnbgclrhov); 
} 
.btn.btn-primary-line {
    --btnbgclr: transparent;
    --btnbgclrhov: #0665ca;
    --btnclr: #007bff;
    --btnclrhov: #fff; 
    --btnborderclr: var(--btnclr);
    --btnborderclrhov: var(--btnbgclrhov);  
} 
.btn.btn-secondary {
    --btnbgclr: #007bff;
    --btnbgclrhov: #0665ca;
    --btnclr: #fff;
    --btnclrhov: #fff; 
    --btnborderclr: var(--btnbgclr);
    --btnborderclrhov: var(--btnbgclrhov);
} 
.btn.btn-success { 
    --btnbgclr: #28a745;
    --btnbgclrhov: #1c8334;
    --btnclr: #fff;
    --btnclrhov: #fff; 
    --btnborderclr: var(--btnbgclr);
    --btnborderclrhov: var(--btnbgclrhov); 
} 
.btn.btn-success-line { 
    --btnbgclr: transparent;
    --btnbgclrhov: #28a745;
    --btnclr: #1c8334;
    --btnclrhov: #fff; 
    --btnborderclr: var(--btnclr);
    --btnborderclrhov: var(--btnbgclrhov); 
} 
.btn.btn-danger {
    --btnbgclr: #dc3545;
    --btnbgclrhov: #bb2b3a;
    --btnclr: #fff;
    --btnclrhov: #fff; 
    --btnborderclr: var(--btnbgclr);
    --btnborderclrhov: var(--btnbgclrhov); 
} 
.btn.btn-danger-line { 
    --btnbgclr: transparent;
    --btnbgclrhov: #dc3545;
    --btnclr: #bb2b3a;
    --btnclrhov: #fff; 
    --btnborderclr: var(--btnclr);
    --btnborderclrhov: var(--btnbgclrhov); 
} 
.btn.btn-warning {
    --btnbgclr: #ffc107;
    --btnbgclrhov: #caa022;
    --btnclr: #111;
    --btnclrhov: #111; 
    --btnborderclr: var(--btnbgclr);
    --btnborderclrhov: var(--btnbgclrhov); 
} 
/* ================================ */ 
/* ================================ */ 

/* ================================ */

.btn-circle {
    padding: 3px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    color: inherit;
    display: inline-flex;
    font-family: var(--font-t2);
}

.btn-circle:hover {
    color: inherit
}

.btn-circle .btn-bar {
    width: 50px;
    height: 2px;
    background-color: var(--clr-bd);
    margin: 0 9px
}

.btn-circle svg {
    width: 60px;
    height: 60px;
    position: relative;
}

.btn-circle.btn-down .btn-icon-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    line-height: 0
}

.btn-circle svg .circle {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    transition: all 1.5s ease;
    stroke: var(--clr-bd);
    stroke-width: 2px;
    fill-opacity: 0;
}

.btn-circle:hover svg:nth-child(2) .circle {
    stroke-dasharray: 180;
    stroke-dashoffset: 0;
}

.btn-circle svg:nth-child(1) .circle {
    stroke-dasharray: 180;
    stroke-dashoffset: 0;
}

.btn-circle svg:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    stroke-width: 1px;
}

.btn-circle svg:nth-child(2) .circle {
    stroke: var(--clr02);
}

.btn-icon:nth-of-type(1) {
    transform: translateX(0) translateZ(0)
}

.btn-icon:nth-of-type(2) {
    opacity: 0;
    transform: translateX(-20px) translateZ(0);
    position: absolute;
    left: 0;
    top: 0;
}

.btn-circle .btn-icon svg path {
    fill: var(--clr-bd)
}

.btn-circle .btn-text {
    color: var(--clr-bd)
}

/* .btn-circle:hover .btn-icon svg path {
    
}
.btn-circle:hover {

} */
.btn-circle:hover .btn-icon:nth-of-type(1),
.btn-icon-a:hover .btn-icon:nth-of-type(1) {
    opacity: 0;
    transform: translateX(20px) translateZ(0);
    transition: transform .7s cubic-bezier(.23, 1, .32, 1), opacity .45s cubic-bezier(.165, .84, .44, 1)
}

.btn-circle:hover .btn-icon:nth-of-type(2),
.btn-icon-a:hover .btn-icon:nth-of-type(2) {
    opacity: 1;
    transform: translateX(0) translateZ(0);
    transition: transform .7s .1s cubic-bezier(.23, 1, .32, 1), opacity .45s .1s cubic-bezier(.165, .84, .44, 1)
}

.btn-icon svg {
    width: 10px;
    height: 10px
} 
.tablebx {
    line-height: 1.2;
}
.tablebx .tablew {
    overflow: hidden;
    overflow-x: auto;
}
.tablebx table {
    min-width: 100%;
    border-collapse: collapse;
    font-size: 90%
}

.tablebx table th,
.tablebx table td {
    padding: 6px;
}
.tablebx table th {
    background-color: #ddd;
}
.tablebx table tbody > * {
    border-bottom: 1px solid #ccc;
}
.formbx  .tablebx table :is(input, textarea, select, .textarea) {
    --p: 6px
} 