/*CUSTOM TOGGLE SWITCH BUTTON*/
.knobs,
.layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.switch-button {
    position: relative;
    top: 50%;
    /*width: 74px;*/
    height: 50px;
    margin: -20px auto 0 auto;
    overflow: hidden;
}

.switch-button.r,
.switch-button.r .layer {
    border-radius: 100px;
}

.switch-button.b2 {
    border-radius: 8px;
}

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    background-color: #fcebeb;
    transition: 0.3s ease all;
    z-index: 1;
}

/* Button 16 */
#custom-switch-button .knobs:before {
    content: "Pasif";
    position: absolute;
    /*top: 4px;*/
    /*left: 4px;*/
    min-width: 50%;
    height: 100%;
    color: #fff;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*font-weight: 400;*/
    text-align: center;
    line-height: 1;
    font-family: "Lexend", sans-serif;
    padding: 9px 4px;
    background-color: #f44336;
    border-radius: 8px;
    transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
    /*padding: 10px;*/
}

#custom-switch-button .checkbox:active + .knobs:before {
    width: 46px;
}

#custom-switch-button .checkbox:checked:active + .knobs:before {
    margin-right: -26px;
}

#custom-switch-button .checkbox:checked + .knobs:before {
    content: "Aktif";
    min-width: 50%;
    left: 50%;
    right: 0;
    background-color: #246BFD;
}

#custom-switch-button .checkbox:checked ~ .layer {
    background-color: #ebf7fc;
}

/*--------------------------------------------------------------------------------------------------------*/
/*PRICE INPUT SUFFIX*/
.pricaInputParent{
    position: relative;
    display: flex;
    align-items: center;
}

.priceInput{
    padding-right: 25px;
}

.priceInput-suffix {
    color: #555;
    position: absolute;
    top: 12;
    right: 10px;
}

/*--------------------------------------------------------------------------------------------------------*/
/*GLOBAL*/
.modal-open{
    padding-right: 0px!important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 20px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 30px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: transparent;
}