BODY, DIV, P, H1, H2, H3, H4, H5, TABLE, TD, INPUT, TEXTAREA, LABEL, BUTTON, SPAN, IMG, a, SVG{
   -webkit-transition: ease 0s, background 0.3s ease 0s, height 0.3s ease 0s, filter 0.3s ease 0s, box-shadow 0.3s ease 0s, opacity 0.3s, linear-gradient 0.3s ease 0s, border 0.3s ease 0s, color 0.3s ease 0s, margin 0.3s ease 0s, padding 0.3s ease 0s, fill 0.3s ease 0s;
   -moz-transition: ease 0s, background 0.3s ease 0s, height 0.3s ease 0s, filter 0.3s ease 0s, box-shadow 0.3s ease 0s, opacity 0.3s, linear-gradient 0.3s ease 0s, border 0.3s ease 0s, color 0.3s ease 0s, margin 0.3s ease 0s, padding 0.3s ease 0s, fill 0.3s ease 0s;
   -o-transition: ease 0s, background 0.3s ease 0s, height 0.3s ease 0s, filter 0.3s ease 0s, box-shadow 0.3s ease 0s, opacity 0.3s, linear-gradient 0.3s ease 0s, border 0.3s ease 0s, color 0.3s ease 0s, margin 0.3s ease 0s, padding 0.3s ease 0s, fill 0.3s ease 0s;
   transition: ease 0s, background 0.3s ease 0s, height 0.3s ease 0s, filter 0.3s ease 0s, box-shadow 0.3s ease 0s, opacity 0.3s, linear-gradient 0.3s ease 0s, border 0.3s ease 0s, color 0.3s ease 0s, margin 0.3s ease 0s, padding 0.3s ease 0s, fill 0.3s ease 0s;
}

@font: RobotoRegular;

@font_MagCBold: MagistralCBold;
@font_MagCondBold: MagistralCondBold;
@font_PTSRegular: PTSRegular;
@font_PTSBold: PTSBold;

@font_RLight: RobotoLight;
@font_RBold: RobotoBold;
@font_RUBSN: RUBSN;

@color: #292a2e;
@color_default: #292a2e;
@color_orange_01: #feca0a;
@color_orange_02: #f15921;
@color_orange_03: #f9c715;
@color_orange_04: #ffd32f;
@color_orange_05: #f1a421;
@color_white: #fff;
@color_white_02: #fafafa;
@color_silver_01: #f5f5f5;
@color_silver_02: #b6b7bd;
@color_silver_03: #d5d2d2;
@color_input_01: #808187;
@color_black: #131417;
@color_black_top: #35373d;
@color_black_bottom: #18181b;
@color_black_02: #222327;
@color_black_03: #292b2f;
@color_black_04: #3f3f3f;



BODY{
    margin: 0 !important;
    padding: 0 !important;
    font-family: @font_PTSRegular, serif;
    font-size: 16px;
    line-height: normal;
    color: @color_default;
    .container-fluid{
        max-width: 1920px;
    }
}

/*------------- BASIS_STYLE -------------*/
H1, H2, H3, H4, H5, H6, .noth1, .h2, .h3, .h4, .h5, .h6{
    margin: 0 auto;
    font-family: @font_MagCBold;
    line-height: normal;
    color: @color_default;
}
H1, .noth1{
    font-size: 48px;
    line-height: 60px;
}
H2, .h2{
    font-size: 36px;
    line-height: 54px;
}
H3, .h3{
    font-size: 30px;
    line-height: 36px;
}
H4, .h4{
    font-size: 16px;
    line-height: normal;
}
H5, .h5{
    font-size: 14px;
    line-height: normal;
}
H6, .h6{
    font-size: 12px;
    line-height: normal;
}

.hDesc{
    font-family: @font_PTSRegular;
    font-size: 18px;
    line-height: 27px;
    color: @color_default;
}


    
P{
    margin: 0;
    padding: 0;
    font-family: @font_PTSRegular;
    font-size: 18px;
    line-height: 27px;
    color: @color_black_04;
}

a{
    outline: none;
}

/*------ style content ----------*/
.pageContent{
    H1, .noth1{
        margin: 0 0 41px;
        line-height: 72px;
    }
    
    H2, H3, H4, H5, H6, .h2, .h3, .h4, .h5, .h6{
        margin: 30px 0 30px;
    }
    
    a{
        color: @color_orange_02;
        text-decoration: underline;
        &:hover{
            color: @color_orange_02;
            text-decoration: none;
        }
    }
    
    P{
        margin: 0 0 25px;
        padding: 0;
        font-family: @font_PTSRegular;
        font-size: 18px;
        line-height: 27px;
        color: @color_black_04;
    }
    
    UL, OL{
        margin: 0 0 25px;
        padding: 0;
        list-style-type: none;
        > LI{
            margin: 0 0 10px;
            position: relative;
            list-style: none;
            font-family: @font_PTSRegular;
            font-size: 18px;
            line-height: 27px;
            color: @color_black_04;
            text-align: left;
        }
    }
    UL{
        padding: 0;
        > LI{
            padding: 0 0 0 30px;
            &::before{
                content: '';
                position: absolute;
                top: 11px;
                left: 0;
                width: 6px;
                height: 6px;
                background: @color_black_04;
                border-radius: 50%;
            }
        }
    }
    OL{
        padding: 0;
        counter-reset: num;
        > LI{
            padding: 0 0 0 27px;
            &::before{
                content: counter(num) '. ';
                position: absolute;
                top: 1px;
                left: 0;
                counter-increment: num;
                font-family: @font_MagCBold;
                font-size: 16px;
                line-height: 27px;
                color: @color_black_04;
            }
        }
    }
    
    BLOCKQUOTE{
        margin: 0 0 45px;
        padding: 0 0 0 20px;
        border-left: 3px solid @color;
        font-family: @font_PTSRegular;
        font-size: 18px;
        line-height: 27px;
        color: @color;
        P{
            margin: 0;
            font-family: @font;
            font-size: 16px;
            line-height: 30px;
            color: @color;
        }
    }
    
    IMG{
        margin: 0 auto 30px;
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}
/*------ end style content ----------*/

/*------------- END BASIS_STYLE -------------*/



/*------------- STYLE_SITE -------------*/
.pagination{
    margin-top: 40px;
    margin-bottom: 40px;
    justify-content: center;
    .page-item{
        margin-right: 17px;
        outline: none;
        .page-link{
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: @font;
            font-size: 16px;
            line-height: normal;
            color: @color;
            border: 1px solid #eeeeee;
            border-radius: 50%;
            background-color: #f4f4f4;
            width: 40px;
            height: 40px;
            outline: none;
        }
        .page-link:focus, .page-link:focus{
            box-shadow: none;
            border-color: @color;
            background: @color;
            color: @color_white;
        }
    }
    .page-item:last-child{
        margin-right: 0;
    }
    .page-item:not(.disabled):not(.page-arrow):hover{
        .page-link{
            border-color: @color;
            background: @color;
            color: @color_white;
        }
    }
    .page-item.disabled:not(.page-arrow){
        .page-link{
            border-color: @color;
            color: @color_white;
            background-color: @color;
        }
    }
    .page-item.page-arrow-prev, .page-item.page-arrow-next{
        .page-link{
            position: relative;
            background-image: url("../images/icons/paginationArrow.png");
            background-size: auto auto;
            width: 40px;
            height: 40px;
            right: auto;
            left: auto;
            top: auto;
            bottom: auto;
            opacity: 1;
            border: 0;
            &::before{
                content: '';
                position: absolute;
                background-image: url("../images/icons/paginationArrow.png");
                background-size: auto auto;
                width: 100%;
                height: 100%;
                left: 0;
                top: 0;
                opacity: 0;
            }
        }
    }
    .page-item.page-arrow-prev{
        .page-link{
            background-position: 0 0;
            &::before{
                background-position: -40px 0;
            }
        }
    }
    .page-item.page-arrow-next{
        .page-link{
            background-position: 0 -40px;
            &::before{
                background-position: -40px -40px;
            }
        }
    }
    .page-item.page-arrow:not(.disabled):hover{
        .page-link{
            box-shadow: none;
            &::before{
                opacity: 1;
            }
        }
    }
    .page-item.page-arrow.disabled{
        .page-link{
            opacity: 0.3;
        }
    }
}


/* BTN */
/* BTN_ALL */
.btn, BUTTON{
    margin: 0 auto;
    padding: 4px 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    font-family: @font_PTSBold;
    font-size: 18px;
    line-height: normal;
    color: @color_black_02;
    letter-spacing: 1px;
    background-color: @color_orange_01;
    box-shadow: none;
    border: 1px solid @color_orange_01;
    border-radius: 4px;
    outline: none;
}
.btn.focus, .btn:focus{
    box-shadow: 0 0 10px @color_orange_02;
    box-shadow: none;
    outline: none;
}
.btn.hover, .btn:hover{
    color: @color_orange_02;
    background-color: @color_orange_01;
    border-color: @color_orange_01;
    box-shadow: 0 0 10px @color_orange_02;
    outline: none;
}
.btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active, .show>.btn.dropdown-toggle{
    color: @color_orange_02;
    background-color: @color_orange_01;
    border-color: @color_orange_01;
    box-shadow: 0 0 10px @color_orange_02;
    outline: none;
}
.btn:not(:disabled):not(.disabled).active:focus, .btn:not(:disabled):not(.disabled):active:focus, .show>.btn.dropdown-toggle:focus{
    box-shadow: none;
    outline: none;
}

/* BTN_DEFAULT */
.btn-default{
    font-family: @font_PTSRegular;
    font-size: 16px;
    color: @color_input_01;
    border-color: transparent;
    background-color: transparent;
}
.btn-default.focus, .btn-default:focus{
    box-shadow: none;
}
.btn-default.hover, .btn-default:hover{
    color: @color_orange_02;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}
.btn-default:not(:disabled):not(.disabled).active, .btn-default:not(:disabled):not(.disabled):active, .show>.btn-default.dropdown-toggle{
    color: @color_orange_02;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}
.btn-default:not(:disabled):not(.disabled).active:focus, .btn-default:not(:disabled):not(.disabled):active:focus, .show>.btn-default.dropdown-toggle:focus{
    box-shadow: none;
}
/* END BTN_DEFAULT */

/* BTN_SUCCESS */
.btn-success{
    color: @color_black_02;
    border-color: @color_orange_01;
    background-color: @color_orange_01;
}
.btn-success.focus, .btn-success:focus{
    box-shadow: none;
}
.btn-success.hover, .btn-success:hover{
    color: @color_orange_02;
    background-color: @color_orange_01;
    border-color: @color_orange_01;
    box-shadow: 0 0 10px @color_orange_02;
}
.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle{
    color: @color_orange_02;
    background-color: @color_orange_01;
    border-color: @color_orange_01;
    box-shadow: 0 0 10px @color_orange_02;
}
.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show>.btn-success.dropdown-toggle:focus{
    box-shadow: none;
}
/* END BTN_SUCCESS */




/* FORM */
.checkbox{
    margin: 0 0 17px;
    position: relative;
    INPUT[type=checkbox]{
        position: absolute;
        //z-index: 1;
        opacity: 0;
        top: 0;
        left: 0;
        //width: 100%;
        //height: 100%;
        cursor: pointer;
    }
    LABEL{
        display: flex;
        //align-items: center;
        align-items: flex-start;
        justify-content: center;
        cursor: pointer;
        .checkboxBtn{
            margin-top: 2px;
            flex: 0 0 auto;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 25px;
            height: 25px;
            border: 1px solid @color_silver_03;
            border-radius: 4px;
            background-color: @color_silver_01;
            .svgicon{
                fill: transparent;
            }
        }
        .checkboxText{
            padding: 4px 0 0 13px;
            flex: 0 1 auto;
            font-family: @font_PTSRegular;
            font-size: 14px;
            line-height: 21px;
            color: @color_silver_02;
            opacity: 0.8;
            a{
                display: inline;
                font-family: @font_PTSRegular;
                font-size: 14px;
                line-height: 22px;
                color: @color_silver_02;
                border-bottom: 1px solid @color_silver_02;
                //z-index: 10;
                &:hover{
                    color: @color_orange_01;
                    border-color: @color_orange_01;
                    text-decoration: none;
                }
            }
        }
        &:hover{
            .checkboxBtn{
                border-color: @color_white;
                background-color: @color_white;
                box-shadow: 0 0 10px @color_white;
                .svgicon{
                    fill: @color_black_02;
                }
            }
        }
    }
    INPUT[type=checkbox]:checked + LABEL .checkboxBtn{
        border-color: @color_orange_01;
        background-color: @color_orange_01;
        box-shadow: 0 0 10px @color_orange_01;
        .svgicon{
            fill: @color_black_top;
        }
    }
}
FORM{
    margin: 0 auto;
    display: block;
    width: 100%;
    .labelForm{
        margin: 0 auto 27px;
        font-family: @font;
        font-size: 20px;
        line-height: 25px;
        color: @color;
        text-align: center;
        opacity: 0.8;
    }
    INPUT, SELECT, TEXTAREA{
        margin: 0 0 20px;
        padding: 19px 30px 21px;
        display: block;
        width: 100%;
        font-family: @font_PTSRegular;
        font-size: 18px;
        line-height: normal;
        color: @color_input_01;
        background: @color_black_02;
        border: 1px solid @color_black_top;
        border-radius: 4px;
        box-shadow: none;
        outline: none;
        &::placeholder{
            //color: @color_input_01;
        }
    }
    INPUT.date{
        cursor: pointer;
    }
    INPUT:hover, SELECT:hover, TEXTAREA:hover{
        background: @color_black_top;
        border: 1px solid @color_black_top;
    }
    INPUT:active, INPUT:focus, SELECT:active, SELECT:focus, TEXTAREA:active, TEXTAREA:focus{
        background: @color_white;
        box-shadow: 0 0 10px @color_orange_01;
        border: 1px solid @color_orange_03;
    }
    INPUT.error, SELECT.error, TEXTAREA.error{
        background: #f7ebeb;
        box-shadow: none;
        border: 1px solid #d32525;
        color: rgba(197,12,12,0.7);
        &::placeholder{
            color: rgba(197,12,12,0.7);
        }
    }
    TEXTAREA{
        height: 175px;
        width: 100%;
    }
    BUTTON, .btn{
        margin: 0 auto;
        height: 65px;
        width: 100%;
    }
    .blockForm_line{
        margin: 0 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        > DIV{
            flex: 1 1 auto;
            padding: 0 10px;
        }
        > DIV:first-child{
            padding-left: 0;
        }
        > DIV:last-child{
            padding-right: 0;
        }
        INPUT, SELECT, BUTTON{
            margin: 0;
        }
    }
    .grpInputBtn{
        display: flex;
        align-items: center;
        .btn{
            flex: 1 0 auto;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid @color_black_top;
            border-left: 0;
            box-shadow: none;
            outline: none;
            width: 65px;
            background: @color_black_02;
            border-radius: 0 4px 4px 0;
            .svgicon{
                fill: @color_orange_02;
            }
            &:hover{
                .svgicon{
                    fill: @color_orange_01;
                }
            }
        }
        .btn-right{
        }
        INPUT{
            flex: 1 1 auto;
            margin: 0;
            border-radius: 4px 0 0 4px;
        }
        INPUT:active + .btn, INPUT:focus + .btn{
            background: @color_orange_01;
            border-color: @color_orange_01;
            box-shadow: 0 0 10px @color_orange_01;
            .svgicon{
                fill: @color_black_02;
            }
        }
    }
}
FORM.black{
    INPUT, SELECT, TEXTAREA{
        background: @color_silver_01;
        border-color: @color_silver_01;
        &::placeholder{
            //color: @color_input_01;
        }
    }
    INPUT:hover, SELECT:hover, TEXTAREA:hover{
        background: @color_white;
        border-color: @color_white;
    }
    INPUT:active, INPUT:focus, SELECT:active, SELECT:focus, TEXTAREA:active, TEXTAREA:focus{
        background: @color_white;
        border: 1px solid @color_white;
        //box-shadow: none;
    }
    .checkbox{
        LABEL{
            .checkboxText{
                color: @color_silver_02;
                opacity: 0.8;
                a{
                    color: @color_silver_02;
                    border-bottom: 1px solid @color_silver_02;
                    &:hover{
                        color: @color_orange_01;
                        border-color: @color_orange_01;
                        text-decoration: none;
                    }
                }
            }
        }
    }
    .grpInputBtn{
        .btn{
            background: @color_orange_01;
            border-color: @color_orange_01;
            .svgicon{
                fill: @color_black_02;
            }
            &:hover{
                .svgicon{
                    fill: @color_orange_02;
                }
            }
        }
        INPUT:active + .btn, INPUT:focus + .btn{
            .svgicon{
                fill: @color_orange_02;
            }
        }
    }
}
/*--- END FORM ---*/





.modalWindow{
    background: rgba(0,0,0,0.6);
    .modal-dialog{
        margin: 50px auto;
        max-width: 700px;
        border: 1px solid @color_orange_01;
        .modal-content{
            padding: 94px 94px 94px;
            position: relative;
            border-radius: 0;
            background-color: @color_black_02;
            background-image: url("../img/background/modalWindowMini.jpg");
            background-position: 50% 50%;
            background-size: auto 100%;
            background-repeat: repeat;
            border: 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            .modal-header{
                margin: 0 0 17px;
                padding: 0;
                border: 0;
                display: block;
                .modal-title{
                    margin: 0;
                    font-family: @font_MagCBold;
                    font-size: 36px;
                    line-height: 54px;
                    color: @color_silver_01;
                    text-align: center;
                    H1, .h1, H2, .h2, H3, .h3{
                        margin: 0 0 19px;
                        font-family: @font_MagCBold;
                        font-size: 36px;
                        line-height: 54px;
                        color: @color_silver_01;
                        text-align: center;
                    }
                    .hDesc{
                        margin: 0 0 30px;
                        font-family: @font_PTSRegular;
                        font-size: 18px;
                        line-height: 27px;
                        color: @color_silver_02;
                        text-align: center;
                        opacity: 0.8;
                        letter-spacing: 1px;
                    }
                }
            }
            .btnClose{
                margin: 0;
                padding: 0;
                position: absolute;
                display: flex;
                align-items: center;
                justify-content: center;
                top: 27px;
                right: 27px;
                width: 20px;
                height: 20px;
                BUTTON.close{
                    margin: 0;
                    padding: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 100%;
                    height: 100%;
                    opacity: 0.4;
                    outline: none;
                    background: transparent;
                    border: 0;
                    cursor: pointer;
                    float: none;
                    .svgicon{
                        fill: @color_orange_01;
                    }
                    &::before{
                        display: none;
                    }
                    &:hover{
                        opacity: 1;
                    }
                }
            }
            .modal-body{
                margin: 0;
                padding: 0;
                font-family: @font;
                font-size: 20px;
                line-height: 25px;
                H1, H2, H3, H4, H5, H6, .h1, .h2, .h3, .h4, .h5, .h6{
                    font-family: @font_MagCBold;
                    font-size: 36px;
                    line-height: 54px;
                    color: @color_silver_01;
                    text-align: center;
                }
                P{
                    color: @color_white;
                    opacity: 0.7;
                }
                FORM{
                    margin: 0 auto;
                    .btn{
                        margin-bottom: 15px;
                        width: 100%;
                    }
                    .checkbox{
                        margin: 36px 0 15px;
                    }
                }
            }
        }
    }
}

.ownerBreadcrambs{
    padding: 21px 0 12px;
    background-color: @color;
    .breadcrumb{
        padding: 0;
        margin: 0;
        display: flex;
        text-align: center;
        background-color: transparent !important;
        border: 0;
        .itemList{
            margin-right: 20px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            a, SPAN{
                font-family: @font !important;
                font-size: 14px !important;
                line-height: normal !important;
                color: @color_white !important;
                &:hover{
                    text-decoration: none;
                    color: @color;
                }
            }
            > SPAN{
                opacity: 0.5;
            }
            .svgicon{
                margin-left: 23px;
                fill: @color_white;
            }
        }
        .itemList.active{
            > SPAN{
                opacity: 0.5;
            }
        }
        .itemList + .itemList:before{
            content: none !important;
        }
        .divider{
            padding: 3px 0 0;
            opacity: 0.5;
            IMG{
                display: none;
            }
        }
    }
}


/*--- SVG ---*/
@keyframes loadSvgicon{
    0% {
        fill: transparent;
        stroke: @color_orange_02;
        stroke-dasharray: 0% 100%;
    }
    90% {
        fill: transparent;
        stroke: @color_orange_02;
        stroke-dasharray: 100% 0%;
    }
    100% {
        fill: @color_orange_02;
        stroke: transparent;
        stroke-dasharray: 100% 0%;
    }
}
.svgicon{
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    fill: @color_orange_02;
    fill-rule: evenodd;
    //animation-name: loadSvgicon;
    //animation-duration: 2s;
}
.svgicon.svgQuality{
    width: 30px;
    height: 30px;
}
.svgicon.svgChange{
    width: 30px;
    height: 30px;
}
.svgicon.svgClose{
    width: 20px;
    height: 20px;
}
.svgicon.svgArrow{
    width: 12px;
    height: 12px;
}
.svgicon.svgArrowRound{
    width: 12px;
    height: 12px;
}
.svgicon.svgPhoto{
    width: 15px;
    height: 13px;
}
.svgicon.svgCart{
    width: 13px;
    height: 11px;
}
.svgicon.svgSearch{
    width: 15px;
    height: 15px;
}
.svgicon.svgPrev{
    width: 10px;
    height: 17px;
}
.svgicon.svgNext{
    width: 10px;
    height: 17px;
}
.svgicon.svgMarker{
    width: 11px;
    height: 16px;
}
.svgicon.svgPhone{
    width: 15px;
    height: 15px;
}
.svgicon.svgLupa{
    width: 17px;
    height: 17px;
}
.svgicon.svgFile{
    width: 13px;
    height: 15px;
}
.svgicon.svgCheck{
    width: 12px;
    height: 10px;
}
.svgicon.svgMachine{
    width: 30px;
    height: 30px;
}
.svgicon.svgBirka{
    width: 30px;
    height: 30px;
}
.svgicon.svgBuild{
    width: 30px;
    height: 26px;
}
.svgicon.svgGarant{
    width: 29px;
    height: 29px;
}
.svgicon.svgUser{
    width: 23px;
    height: 30px;
}
.svgicon.svgTime{
    width: 26px;
    height: 30px;
}
/*--- END SVG ---*/


/* funcy */
BUTTON{
    outline: none;
}
.fancybox-toolbar{
    right: 10px;
    top: 10px;
    outline: none;
}
.fancybox-button, .fancybox-button:link, .fancybox-button:visited{
    color: @color;
    border: 1px solid @color;
    border-radius: 50%;
    background: @color_white;
    outline: none;
    svg{
        width: 90%;
        height: 90%;
    }
}
.fancybox-button, .fancybox-toolbar{
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
.fancybox-button:not(.disabled):hover{
    border-color: @color_white;
    background: @color;
}
.fancybox-button.disabled, .fancybox-button:disabled{
    opacity: 0.4 !important;
}
.fancybox-button--zoom{
    margin-right: 15px;
}
.fancybox-caption{
    font-family: @font;
    font-size: 16px;
}
.fancybox-is-open .fancybox-stage{
    transition: 0;
    .fancybox-slide{
        transition: 0;
    }
}
/* end funcy */


/* btn nav */
.navigation{
    padding: 25px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    .arrowBtn{
        margin: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid #eeeeee;
        background: #f4f4f4;
        border-radius: 50%;
        cursor: pointer;
        outline: none;
        .svgicon{
            fill: @color;
            outline: none;
        }
        &:hover{
            border-color: #de8f7f;
            background: #e79e90;
            .svgicon{
                fill: @color_white;
            }
        }
    }
    .arrowBtn.arrowBtnLeft{
        .svgicon{
            transform: rotate(180deg);
        }
    }
    .label{
        margin: 0 19px;
        font-family: @font;
        font-size: 12px;
        line-height: normal;
        color: @color;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}
/* end btn nav */


/* Acordeon */
.accordion{
    .card, .card:not(:first-of-type):not(:last-of-type), .card:first-of-type, .card:last-of-type{
        border-radius: 4px;
    }
    .card{
        margin: 0 0 2px;
        border: 0;
        overflow: hidden;
        background: @color_white;
        .card-header{
            padding: 0;
            border: 0;
            border-radius: 0;
            background: @color_orange_02;
            a{
                padding: 20px 15px;
                display: block;
                font-family: @font_MagCBold;
                font-size: 16px;
                line-height: normal;
                color: @color_white;
                border-radius: 4px;
                background: @color_black_02;
                transition: 0.2s;
                text-decoration: none;
                &:hover{
                    background: @color_orange_02;
                }
            }
            a.collapsed{
                color: @color_white;
                background: @color_black_02;
            }
            a.collapsed:hover{
                //padding-left: 6px;
                text-decoration: none;
                //padding-left: 23px;
                background: @color_orange_02;
            }
        }
        .collapse, .collapsing{
            padding: 10px 15px;
            background: @color_white;
            .answerBlock, P{
                margin: 0;
                font-family: @font_PTSRegular;
                color: @color_default;
                P{
                    margin: 0 0 15px;
                }
            }
        }
    }
}
/* END Acordeon */

/* SWIPER */
.swiper-pagination{
    margin: 0 0 30px;
    padding: 28px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    //background: red;
    .swiper-pagination-bullet{
        margin: 0 5px;
        width: 10px;
        height: 10px;
        opacity: 0.25;
        background: @color_black_top;
        outline: none;
        &:hover:not(.swiper-pagination-bullet-active){
            opacity: 1;
            background: @color_orange_02;
        }
    }
    .swiper-pagination-bullet-active{
        opacity: 1;
        background: @color_orange_01;
        outline: none;
    }
}
.swiper-button-next, .swiper-button-prev{
    margin-top: -13px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 65px;
    outline: none;
    background: transparent;
    border: 1px solid #e1e2e4;
    border-radius: 50%;
    .svgicon{
        fill: @color_orange_01;
    }
    &:hover{
        border-color: @color_orange_02;
        .svgicon{
            fill: @color_orange_02;
        }
    }
}
.swiper-button-next{
    right: -105px;
}
.swiper-button-prev{
    left: -105px;
}
/* END SWIPER */


.photoView{
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid @color_silver_02;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    .svgicon{
        fill: @color_silver_02;
        opacity: 0.3;
    }
    &:hover{
        border-color: @color_orange_02;
        .svgicon{
            fill: @color_orange_02;
            opacity: 1;
        }
    }
}


.dropdown{
    display: flex;
    align-items: center;
    //width: 210px;
    .svgicon{
        margin-right: 10px;
        fill: @color_input_01;
    }
    .btn{
        padding: 4px 29px;
        min-width: 210px;
    }
    .dropdown-toggle{
        color: @color_input_01;
        border-radius: 33px;
        &::after{
            margin-left: 10px;
            border-top: 4px solid @color_orange_01;
            border-right: 4px solid transparent;
            border-bottom: 0;
            border-left: 4px solid transparent;
        }
        &:hover, &:active{
            color: @color_input_01;
            background: @color_black_03;
        }
    }
    .dropdown-menu{
        margin: 8px 0 0;
        padding: 12px 0;
        width: 100%;
        border-radius: 4px;
        .dropdown-item{
            margin: 0;
            padding: 6px 18px;
            display: flex;
            align-items: center;
            font-family: @font_PTSRegular;
            font-size: 16px;
            line-height: 24px;
            color: @color_input_01;
            background: @color_white;
            .svgicon{
                margin-right: 14px;
            }
            &:hover{
                color: @color_white;
                background: @color_orange_02;
                .svgicon{
                    fill: @color_white;
                }
            }
        }
    }
}
.dropdown.show{
    .svgicon{
        fill: @color_orange_01;
    }
    .dropdown-toggle{
        background: @color_white;
    }
}


/*------------- END STYLE_SITE -------------*/





/*------------- HEADER -------------*/
.ownerHeader{
    padding: 12px 22px 13px;
    position: relative;
    background: @color_black_02;
    .columnsHeader{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        .colHeader{
            margin: 0 15px;
            display: flex;
            align-items: center;
            &:first-child{ margin-left: 0; }
            &:last-child{ margin-right: 0; }
        }
        .colHeader.logoBig{
            position: relative;
            align-items: flex-start;
        }
        .headDelphi{
            position: absolute;
            top: -34px; right: 0;
            width: 70px; height: auto;
        }
        .colMenu{
            padding: 0 30px 0 0;
            flex: 1 1 auto;
            justify-content: space-between;
            .colHeaderMenu{
                flex: 1 0 auto;
            }
        }
        .colCityAttr{
            flex-direction: column;
            .phoneCity{
                margin: 15px 0 0;
                display: flex;
                align-items: flex-start;
                .iconContact{
                    flex: 0 0 16px;
                    margin: 4px 10px 0 0;
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    width: 16px;
                    .svgicon{
                        fill: @color_orange_01;
                    }
                }
                .iconContact.phone{
                    margin-top: 7px;
                }
                .textContact{
                    font-family: @font_PTSRegular;
                    font-size: 16px;
                    line-height: 24px;
                    color: @color_input_01;
                    P{
                        margin: 0;
                    }
                    a{
                        font-family: @font_MagCondBold, @font_MagCBold;
                        font-size: 18px;
                        line-height: 26px;
                        color: @color_silver_02;
                        &:hover{
                            color: @color_silver_01;
                            text-decoration: none;
                        }
                    }
                }
            }
        }
        FORM[name=search]{
            margin: 0;
            width: 413px;
            INPUT{
                margin: 0;
            }
        }
    }
    .navbar{
        padding: 0;
        width: 100%;
        .navbar-brand{
            display: none;
        }
        .collapse{
            .nav{
                display: flex;
                align-items: center;
                //justify-content: space-between;
                width: 100%;
                .nav-item{
                    flex: 0 1 auto;
                    display: block !important;
                    .nav-link{
                        padding: 28px 1.6vw;
                        display: flex;
                        align-items: center;
                        font-family: @font_PTSRegular;
                        font-size: 18px;
                        line-height: normal;
                        color: @color_silver_02;
                        letter-spacing: 0;
                        border-radius: 0;
                        .svgicon{
                            margin-left: 4px;
                            padding-top: 1px;
                            display: inline-flex;
                            fill: @color_silver_02;
                        }
                        
                    }
                    .dropdown-menu{
                        margin: 0;
                        padding: 12px 0 33px;
                        border: 0;
                        border-radius: 4px;
                        background: @color;
                        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                        min-width: 300px;
                        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
                        background: @color_black_02;
                        .nav-item{
                            .nav-link{
                                padding: 10px 26px;
                                font-size: 16px;
                                color: @color_input_01;
                                display: block;
                                text-align: left;
                                text-transform: none;
                                background: transparent;
                                &:hover{
                                    color: @color_white;
                                    background: @color_orange_02;
                                }
                            }
                        }
                    }
                }
                .nav-item.active, .nav-item:hover, .nav-item.dropdown.show{
                    > .nav-link{
                        color: @color_silver_01 !important;
                        background: inherit;
                    }
                    > .nav-link .svgicon{
                        fill: @color_silver_01 !important;
                    }
                }
                .nav-item.dropdown.show{
                    > .nav-link{
                        color: @color_orange_02 !important;
                        &::after{
                            border-top-color: @color_orange_02;
                        }
                    }
                }
                .nav-item.dropdown{
                    a::after{
                        //display: none;
                    }
                }
            }
        }
        > a.logo{
            display: none;
            flex: 1 1 auto;
        }
        BUTTON{
            //padding: 0 7px 0 30px;
            background: transparent;
            border-radius: 0;
            outline: none;
            width: 42px;
            min-width: auto;
            width: 100%;
            justify-content: space-between;
            .head{
                margin: 0 0 2px;
                font-family: @font;
                font-size: 24px;
                letter-spacing: 2px;
            }
            .navbar-toggler-icon{
                display: block;
                background-image: url("../img/icons/cross.png");
                background-size: contain;
                height: 40px;
                width: 40px;
            }
        }
    }
}
/*------------- END HEADER -------------*/



/*-------------------------------------*/
/*------------- ROW STYLE -------------*/
/*-------------------------------------*/

/*------------- UTP_UTP_COL_ROW_DATA -------------*/
.ownerUtpColRowData{
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    background: @color_orange_02;
    .colUtpColRowData{
        flex: 1 0 33.3%;
        padding: 71px 4.3vw 334px;
        position: relative;
        overflow: hidden;
        > DIV{
            position: relative;
        }
        .h2{
            margin: 0 0 13px;
            font-size: 36px;
            line-height: 54px;
        }
        .hDesc{
            margin: 0 0 34px;
            font-size: 16px;
            line-height: 27px;
            opacity: 0.8;
        }
        .imgBotton{
            padding: 0 4.2vw;
            position: absolute;
            bottom: 82px;
            left: 0;
            width: 100%;
            height: auto;
            //z-index: 1;
            IMG{
                margin: 0 auto;
                display: block;
                //width: 100%;
                object-fit: contain;
                object-position: 50% 50%;
            }
        }
        .formRow{
            margin: 0 0 20px;
        }
        .linkPage{
            display: flex;
            align-items: center;
            a{
                display: flex;
                align-items: center;
                font-family: @font_PTSBold;
                font-size: 18px;
                line-height: 24px;
                color: @color_black_03;
                border-bottom: 1px solid @color_black_03;
                SPAN{
                    transition: 0s;
                }
                .svgicon{
                    margin-left: 10px;
                    fill: @color_black_03;
                }
                &:hover{
                    color: @color_orange_02;
                    text-decoration: none;
                    border-color: transparent;
                    .svgicon{
                        fill: @color_orange_02;
                    }
                }
            }
        }
        .linkPage.blue{
            a{
                color: @color_silver_03;
                border-color: @color_silver_03;
                .svgicon{
                    fill: @color_silver_03;
                }
                &:hover{
                    color: @color_orange_02;
                    border-color: @color_orange_02;
                    .svgicon{
                        fill: @color_orange_02;
                    }
                }
            }
        }
    }
    .colUtpSearch{
        background-color: @color_black_bottom;
        background: linear-gradient(to bottom, @color_black_top, @color_black_bottom);
        color: @color_white;
        color: @color_silver_01;
        .h2, .hDesc{
            color: @color_silver_02;
        }
        .hDesc{
            margin: 0 0 49px;
        }
        .imgBotton{
            
        }
    }
    .colUtpTnvd{
        background-color: @color_orange_05;
        background: linear-gradient(to bottom, @color_orange_04, @color_orange_05);
        color: @color_default;
        color: @color_black_03;
        .h2, .hDesc{
            color: @color_black_03;
        }
    }
    .colUtpGbc{
        background-color: @color_silver_02;
        background: linear-gradient(to bottom, @color_silver_01, @color_silver_02);
        color: @color_default;
        color: @color_black_03;
        .h2, .hDesc{
            color: @color_black_03;
        }
    }
}
/*------------- END UTP_UTP_COL_ROW_DATA -------------*/

/*------------- UTP_ADVANTAGE -------------*/
.ownerUtpAdvantage{
    padding: 105px 0 91px;
    margin: 0;
    position: relative;
    .h2{
        margin: 0 0 37px;
        text-align: center;
    }
    .colUtpAdvantage{
        margin-bottom: 25px;
        display: flex;
        align-items: flex-start;
        .imgCol{
            margin: 9px 30px 0 0;
            flex: 0 0 auto;
            width: 65px;
            height: 84px;
            border-radius: 32px 32px 4px 4px;
            background-color: @color_orange_01;
            text-align: center;
            .imgBlock{
                margin: 17px auto 0;
                position: relative;
                display: inline-block;
                //justify-content: center;
                .svgicon{
                    position: relative;
                    fill: @color_orange_02;
                    //filter: drop-shadow(0 2px 1px @color_white);
                    z-index: 10;
                }
                .svgicon + .svgicon{
                    fill: @color_white;
                    position: absolute;
                    top: 2px;
                    left: 0;
                    z-index: 1;
                }
            }
        }
        .descCol{
            .labelUtpAdvantage{
                margin: 0 0 0;
                font-family: @font_MagCBold;
                font-size: 24px;
                line-height: 36px;
                color: @color_default;
            }
            .textUtpAdvantage{
                margin: 0 0 0;
                font-family: @font_PTSRegular;
                font-size: 14px;
                line-height: 21px;
                color: @color_default;
            }
        }
    }
}
/*------------- END UTP_ADVANTAGE -------------*/

/*------------- FORM_RECORD_DIAGNOSTIC -------------*/
.ownerFormRecordDiagnostic{
    padding: 95px 0 91px;
    margin: 0;
    position: relative;
    background-color: @color_black;
    //background: linear-gradient(to-bottom, @color_black_top, @color_black_bottom);
    background-image: url("../img/background/backLineMini.jpg");
    background-position: 0 50%;
    background-repeat: repeat;
    background-size: auto 100%;
    .h2{
        margin: 0 0 0;
        text-align: center;
        color: @color_silver_01;
    }
    .hDesc{
        margin: 0 auto 31px;
        color: @color_silver_02;
        text-align: center;
        opacity: 0.8;
    }
    .colFormRecordDiagnostic{
        FORM{
            margin: 0 auto;
            max-width: 930px;
            .blockForm_line{
                > DIV{
                    flex: 1 0 33.33%;
                }
            }
        }
    }
}
/*------------- END FORM_RECORD_DIAGNOSTIC -------------*/

/*------------- US_PARTNER_LINE -------------*/
.ownerUsPartnerLine{
    padding: 83px 0 47px;
    margin: 0;
    position: relative;
    overflow: hidden;
    .h2{
        margin: 0 0 20px;
        text-align: center;
    }
    .colUsPartnerLine{
        .sliderSwiper{
            margin-bottom: 30px;
            position: relative;
            .swiper-container{
                margin: 0 auto;
                padding: 5px 2px 25px;
                width: 100%;
                height: 100%;
                .swiper-slide{
                    background-image: url("../img/noImg.jpg");
                    background-position: 50% 50%;
                    background-size: contain;
                    background-repeat: no-repeat;
                    height: 128px;
                    image-rendering: pixelated; 
                    border-radius: 4px;
                    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
                }
            }
        }
        .swiper-button-next, .swiper-button-prev{
            top: 32%;
        }
    }
}
/*------------- END US_PARTNER_LINE -------------*/

/*------------- REQUEST_CLIENTS -------------*/
.ownerRequestClients{
    padding: 85px 0 27px;
    margin: 0;
    position: relative;
    background: @color_silver_01;
    overflow: hidden;
    .h2{
        margin: 0 0 30px;
        text-align: center;
    }
    .colUsPartnerLine{
        margin-bottom: 28px;
        .sliderSwiper{
            margin-bottom: 0;
            position: relative;
            .swiper-container{
                margin: 0 auto;
                padding: 5px 2px 25px;
                width: 100%;
                height: 100%;
                .swiper-slide{
                    image-rendering: pixelated;
                    .blockRequestClients{
                        padding: 0 0 20px;
                        .imgRequestClients{
                            margin: 0 0 10px;
                            position: relative;
                            background-image: url("../img/noImg.jpg");
                            background-position: 50% 50%;
                            background-size: cover;
                            background-repeat: no-repeat;
                            height: 128px;
                            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
                            cursor: pointer;
                            z-index: 1;
                            .openImg{
                                position: absolute;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                z-index: 100;
                            }
                            .openFile{
                                position: absolute;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                top: 10px;
                                right: 10px;
                                width: 35px;
                                height: 35px;
                                background: @color_orange_01;
                                z-index: 200;
                                .svgicon{
                                    fill: @color_black_03;
                                }
                            }
                            &::before{
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                background: @color_white;
                                opacity: 0.5;
                                z-index: 10;
                                transition: 0.3s;
                            }
                            &:hover{
                                .openFile{
                                    .svgicon{
                                        fill: @color_orange_02;
                                    }
                                }
                                &::before{
                                    opacity: 0;
                                    transition: 0.3s;
                                }
                            }
                        }
                        .labelRequestClients{
                            margin: 0 0 9px;
                            font-family: @font_PTSRegular;
                            font-size: 14px;
                            line-height: 21px;
                            color: @color_default;
                            text-align: left;
                        }
                    }
                }
            }
        }
        .swiper-button-next, .swiper-button-prev{
            top: 36%;
        }
    }
}
/*------------- END REQUEST_CLIENTS -------------*/

/*------------- UTP_US_CEH -------------*/
.ownerUtpUsCeh{
    padding: 105px 0 21px;
    margin: 0;
    position: relative;
    .h2{
        margin: 0 0 21px;
        text-align: center;
    }
    .hDesc{
        margin: 0 auto 30px;
        color: @color;
        text-align: center;
        opacity: 0.8;
        max-width: 780px;
    }
}
.ownerUtpUsCehSlider{
    padding: 0;
    margin: 0;
    position: relative;
    //background: @color_black_top;
    .swiper-container{
        margin: 0 auto;
        width: 100%;
        height: 100%;
        background: @color_black_top;
        .swiper-slide{
            position: relative;
            background-image: url("../img/noImg.jpg");
            background-position: 50% 50%;
            background-size: cover;
            background-repeat: no-repeat;
            height: 240px;
            image-rendering: pixelated; 
            cursor: pointer;
            .openImg{
                position: absolute;
                display: flex;
                align-items: center;
                justify-content: center;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 100;
                .openFile{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 35px;
                    height: 35px;
                    background: @color_orange_01;
                    z-index: 100;
                    opacity: 0;
                    .svgicon{
                        fill: @color_orange_02;
                    }
                }
            }
            &::before{
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: #000;
                opacity: 0;
                z-index: 10;
                transition: 0.3s;
            }
            &:hover{
                .openImg{
                    .openFile{
                        opacity: 1;
                    }
                }
                &::before{
                    opacity: 0.7;
                    transition: 0.3s;
                }
            }
        }
    }
}
/*------------- END UTP_US_CEH -------------*/

/*------------- FORM_SEARCH -------------*/
.ownerFormSearch{
    padding: 89px 0 95px;
    margin: 0;
    position: relative;
    background-position: 50% 50%;
    background-size: cover;
    H1, .h1{
        margin: 0 0 28px;
        color: @color_silver_01;
        text-align: center;
    }
    .hDesc{
        margin: 0;
        font-family: @font_PTSRegular;
        font-size: 14px;
        line-height: 21px;
        color: @color_input_01;
        text-align: center;
        letter-spacing: 1px;
    }
    .formRow{
        margin: 0 auto 16px;
        max-width: 470px;
    }
    &::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: @color_black_bottom;
        background: linear-gradient(to bottom, @color_black_top, @color_black_bottom);
        z-index: -1;
    }
}
/*------------- END FORM_SEARCH -------------*/

/*------------- THIS -------------*/
.owner{
    padding: 30px 0 30px;
    margin: 0;
    position: relative;
    .h2{
        margin: 0 0 30px;
        text-align: center;
    }
    .hDesc{
        margin: 0 auto 31px;
        color: @color;
        text-align: center;
        opacity: 0.8;
    }
    .colLogoHeader{
    }
}
/*------------- END THIS -------------*/

/*-----------------------------------------*/
/*------------- END ROW STYLE -------------*/
/*-----------------------------------------*/



/*------------- SEARCH -------------*/
.ownerSearch{
    padding: 90px 0 65px;
    margin: 0;
    position: relative;
    background: @color_silver_01;
    .h3{
        margin: 0 0 40px;
        font-family: @font_MagCBold;
        font-size: 24px;
        line-height: 36px;
        color: @color_black_02;
        text-align: center;
    }
    .colLogoHeader{
    }
}
.badBootstrapSheet{
    margin: 0 0 57px;
}
.resultTableSearch{
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    TR{
        max-width: 100%;
        TD{
            padding: 17px 10px;
            //border-right: 1px solid red;
            border-bottom: 1px solid @color_silver_01;
            font-family: @font_PTSRegular;
            font-size: 14px;
            line-height: normal;
            color: @color_black_top;
            min-height: 65px;
            background: @color_white;
            //word-break: break-word;
            P{
                margin: 0;
                font-family: @font_PTSRegular;
                font-size: 14px;
                line-height: normal;
                color: @color_black_top;
                min-width: 100px;
                word-break: break-word;
            }
            a:not(.photoView){
                display: inline;
                font-size: 16px;
                color: @color_orange_02;
                border-bottom: 1px solid @color_orange_02;
                .svgicon{
                    display: inline-flex;
                    margin: 0 10px;
                    fill: @color_orange_02;
                }
                &:hover{
                    text-decoration: none;
                    border-bottom-color: transparent;
                }
            }
            a.nextStep{
                font-family: @font_MagCBold;
                display: flex;
                align-items: center;
                border: 0;
                &:hover{
                    color: @color_orange_01;
                    .svgicon{ fill: @color_orange_01; }
                }
            }
            .analogRow{
                white-space: nowrap;
                display: inline-flex;
                align-items: center;
                a.analogShow{
                    font-family: @font_PTSRegular;
                    font-size: 14px;
                    line-height: normal;
                    color: @color_orange_02;
                    align-items: center;
                    border-bottom: 1px dashed @color_orange_02;
                    .svgicon{ fill: @color_orange_02; }
                    &:hover{
                        color: @color_orange_01;
                        border-bottom-color: @color_orange_01;
                        .svgicon{ fill: @color_orange_01; }
                    }
                }
                a.analogShow + .svgicon{
                    margin-left: 8px;
                    fill: @color_orange_02;
                }
                a.analogShow:hover + .svgicon{ fill: @color_orange_01; }
                a.analogShow.active + .svgicon{
                    transform: rotate(90deg);
                }
            }
            IMG{
                height: 30px;
                object-fit: contain;
            }
            .checkbox{
                margin: 0;
                LABEL{
                    margin: 0;
                    .checkboxBtn{
                        margin: 0;
                    }
                }
                LABEL:hover .checkboxBtn{
                    box-shadow: 0 0 10px @color_orange_01;
                }
                INPUT[type=checkbox]:checked + LABEL .checkboxBtn{
                    box-shadow: none;
                }
            }
            .checkbox.bind{
                opacity: 0.3;
            }
            .labelOrg{
                margin: 0 0 0 8px;
                padding: 4px 11px 6px;
                border-radius: 12px;
                display: inline-block;
                vertical-align: middle;
                font-family: @font_PTSBold;
                font-size: 12px;
                line-height: normal;
                color: @color_white;
                background-color: @color_orange_02;
            }
        }
        TD:last-child{
            //border-right: 0;
        }
        TD.center{
            text-align: center;
            .svgicon, > DIV, IMG{
                margin: 0 auto;
            }
        }
        TD.nameAcc{
            font-size: 16px;
        }
        TD.priceAcc{
            font-family: @font_PTSBold;
            font-size: 16px;
            text-align: center;
            color: @color_orange_02;
        }
    }
    
    TR:first-child{
        TD{
            padding: 12px 10px;
            background: @color_black_03;
            //border-right-color: #fff;
            color: @color_silver_02;
            min-height: auto;
            .svgicon{
                fill: @color_orange_02;
            }
        }
    }
    TR:last-child{
        TD{
            border-bottom: 0;
        }
    }
    TR.active{
        TD{
            //background: color_white;
        }
    }
    TR.analogRow{
        display: none;
        TD{
            background: @color_silver_01;
            //background: @color_orange_01;
        }
    }
    TR.analogRow.activeAnal{
        display: table-row;
    }
    TR.workPrice{
        TD{
            font-family: @font_MagCBold;
            font-size: 18px;
            line-height: 27px;
            color: @color_black_02;
            .price{
                font-family: @font_MagCondBold;
            }
        }
        TD:first-child{
            text-align: right;
        }
    }
}
.accInjector{
    //border: 2px dashed #eee;
    display: none;
    width: 100%;
    .h3{
        margin: 0 0 36px;
        #codeInjector{
            font-family: @font_MagCondBold;
            color: @color_orange_02;
        }
    }
    .badBootstrapSheet{
        margin: 0 0 80px;
    }
    .resultTableSearch{
        margin: 0;
    }
    .calcPrice{
        margin: 0 0 20px;
        font-family: @font_PTSRegular;
        font-size: 18px;
        line-height: 27px;
        color: @color_black_02;
        text-align: right;
        .linkCalc{
            display: inline-block;
            color: @color_orange_02;
            cursor: pointer;
            &:hover{
                color: @color_orange_01;
                .svgicon{ fill: @color_orange_01; }
            }
        }
    }
    .btnGetCart{
        margin: 0 0 60px;
        .btn{
            margin: 0 0 30px auto;
            max-width: 350px;
            letter-spacing: 0;
            .resultPrice{
                margin: 0 8px;
                transition: 0s;
            }
        }
    }
}
.accInjector.active{
    //border: 2px solid green;
    display: block;
}
.colConsul{
    .btnConsul{
        .btn{
            margin: 0 auto 30px;
        }
    }
    .phoneConsul{
        margin: 0 auto 30px;
        display: flex;
        justify-content: center;
        .infoPhone{
            display: flex;
            .svgicon{
                margin: 3px 15px 0 0;
                fill: @color_orange_01;
            }
            P, a{
                margin: 0;
                display: block;
                font-family: @font_PTSRegular;
                font-size: 16px;
                line-height: normal;
                color: @color_black_top
            }
            a:hover{
                color: @color_orange_02;
                text-decoration: none;
            }
            .phone{
                font-family: @font_MagCondBold;
                font-size: 24px;
                line-height: 24px;
                color: @color_black_02
            }
        }
    }
}
/*------------- END SEARCH -------------*/



/*------------- ARTICLE -------------*/
.ownerArticle{
    padding: 43px 0 58px;
    margin: 0;
    position: relative;
    .imgArticle{
        float: right;
        width: 100%;
        max-width: 30%;
        IMG{
            width: 100%;
            height: auto;
        }
    }
}
.colCat{
    margin-bottom: 30px;
    .imgCat{
        margin: 0 0 15px;
        display: block;
        width: 100%;
        height: 250px;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .labelCat{
        margin: 0 0 15px;
        font-family: @font_MagCBold;
        font-size: 18px;
        color: @color_black_02;
        border: 0;
        a{
            font-family: @font_MagCBold;
            font-size: 18px;
            color: @color_black_02;
            border: 0;
            text-decoration: none;
            &:hover{
                text-decoration: none;
                color: @color_orange_02;
            }
        }
    }
    .descCat{
        margin: 0 0 15px;
        font-family: @font_PTSRegular;
        font-size: 16px;
        color: @color_black_02;
        height: 80px;
        overflow: hidden;
    }
}
/*------------- END ARTICLE -------------*/




/*------------- FOOTER -------------*/
.ownerFooter{
    padding: 78px 0 33px;
    margin: 0;
    position: relative;
    background: @color_black_02;
    color: @color_input_01;
    .h2{
        margin: 0 0 11px;
        font-family: @font_MagCBold;
        font-size: 18px;
        line-height: normal;
        color: @color_input_01;
        letter-spacing: 1px;
    }
    a{
        color: @color_input_01;
    }
    .colLogo{
        margin-bottom: 40px;
        margin-top: -9px;
        a{
            font-family: @font_PTSRegular;
            font-size: 14px;
            line-height: 21px;
            color: @color_silver_02;
            letter-spacing: 0.3px;
            &:hover{
                color: @color_orange_02;
                text-decoration: none;
            }
        }
        .logo{
            margin: 0 0 15px;
            padding: 0;
            display: block;
            a{
                display: inline-block;
                IMG{
                    display: block;
                    width: 74px;
                    height: 101px;
                }
            }
        }
        .copyright{
            margin: 0 0 22px;
            font-family: @font_PTSRegular;
            font-size: 14px;
            line-height: 21px;
            color: @color_input_01;
            letter-spacing: 0.3px;
        }
        .dopLinksLogo{
            margin: 0 0 40px;
        }
    }
    .colMenu{
        margin-bottom: 40px;
        .nav{
            margin: 0 0 30px;
            .nav-item{
                display: block;
                width: 100%;
                .nav-link{
                    margin: 0;
                    padding: 6px 0;
                    font-family: @font_PTSRegular;
                    font-size: 16px;
                    line-height: 24px;
                    color: @color_silver_02;
                    &:hover{
                        color: @color_silver_01;
                        text-decoration: none;
                    }
                }
            }
            .nav-item.active{
                .nav-link{
                    color: @color_silver_01;
                    background-color: transparent;
                }
            }
        }
    }
    .colContacts{
        margin-bottom: 40px;
        .h2{
            margin: 0 0 17px;
        }
        .blockContact{
            margin: 0 0 24px;
            display: flex;
            align-items: flex-start;
            .iconContact{
                flex: 0 0 16px;
                margin: 4px 10px 0 0;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                width: 16px;
                .svgicon{
                    fill: @color_orange_01;
                }
            }
            .iconContact.phone{
                margin-top: 7px;
            }
            .textContact{
                font-family: @font_PTSRegular;
                font-size: 16px;
                line-height: 24px;
                color: @color_input_01;
                P{
                    margin: 0 0 8px;
                    font-family: @font_PTSRegular;
                    font-size: 14px;
                    line-height: 24px;
                    color: @color_input_01;
                }
                a{
                    font-family: @font_MagCondBold, @font_MagCBold;
                    font-size: 18px;
                    line-height: 26px;
                    color: @color_silver_02;
                    &:hover{
                        color: @color_silver_01;
                        text-decoration: none;
                    }
                }
            }
        }
    }
    .colCopyDnage{
        text-align: center;
        a{
            font-family: @font_PTSRegular;
            font-size: 13px;
            line-height: 24px;
            color: @color_silver_02;
            letter-spacing: 0.3px;
            &:hover{
                color: @color_orange_02;
                text-decoration: none;
            }
        }
    }
}
/*------------- END FOOTER -------------*/















//----------------------
// MEDIA
//----------------------

//  FULL SCREAN
@media screen and (max-width: 5000px) {
    .ownerFormSearch{
        background-image: url("../img/background/searchHead.jpg");
    }
}

//  COL-XL
@media screen and (max-width: 1700px) {
    /*.ownerHeader .navbar .collapse .nav .nav-item .nav-link{
        padding: 28px 1vw;
    }*/
    .ownerHeader .columnsHeader{
        flex-direction: column;
        > .colHeader, > .colHeader:first-child, > .colHeader:last-child{
            margin: 0 15px 30px;
            justify-content: space-between;
            width: 100%;
        }
        > .colHeader:last-child{
            margin: 0 15px 0;
        }
    }
    .ownerHeader .navbar .collapse .nav{
        justify-content: space-around;
    }
}

//  COL-XL
@media screen and (max-width: 1920px) {
}

//  COL-XL-correct
@media screen and (max-width: 1500px) {
    .ownerFormSearch{
        padding: 5vw 0;
    }
}

//  COL-LG
@media screen and (max-width: 1200px) {
    .ownerHeader .columnsHeader .colHeader a IMG{
        //width: 182px;
        width: 140px;
        object-fit: contain;
        object-position: 50% 50%;
    }
    .ownerHeader .navbar .collapse .nav .nav-item .nav-link{
        padding: 28px 5px;
    }
    
    .ownerFormSearch{
        padding: 4vw 0;
    }
}

//  COL-MD
@media screen and (max-width: 991px) {
    .ownerHeader .columnsHeader .colHeader.colMenu{
        flex-direction: column;
    }
    .ownerHeader .columnsHeader .colMenu .colHeaderMenu{
        width: 100%;
    }
    
    .ownerFooter .colLogo, .ownerFooter .colLogo .logo, .ownerFooter .colLogo .copyright, .ownerFooter .colLogo .dopLinksLogo{
        text-align: center;
    }
    
    .badBootstrapSheet{
        width: 100%;
        overflow: auto;
    }
    .accInjector .btnGetCart .btn{
        margin: 0 auto 30px auto;
    }
}

//  COL-SM
@media screen and (max-width: 767px) {
    .ownerFormSearch{
        padding: 2vw 0;
    }
    .ownerHeader .navbar BUTTON{
        justify-content: flex-end;
    }
    .ownerHeader .navbar .collapse .nav .nav-item{
        width: 100%;
        .nav-link{
            justify-content: center;
        }
    }
    .ownerHeader .navbar .collapse .nav .nav-item .dropdown-menu{
        background: @color_black_top;
    }
    .ownerHeader .columnsHeader .colHeader.logoBig{
        display: none;
    }
    .ownerHeader .navbar .navbar-brand{
        display: block;
    }
    .ownerHeader .navbar .headerBtn{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        width: 100%;
    }
    
    .ownerUtpColRowData{
        flex-direction: column;
        .colUtpColRowData{
            flex: 1 0 100%;
        }
    }
    
    FORM .blockForm_line{
        flex-direction: column;
        > DIV, > DIV:first-child, > DIV:last-child{
            flex: 1 0 auto;
            margin-bottom: 15px;
            padding: 0;
            width: 100%;
        }
    }
    .ownerFormRecordDiagnostic .colFormRecordDiagnostic FORM .blockForm_line > DIV{
        flex: 1 0 auto;
    }
    
    .ownerFooter .h2, .ownerFooter .colMenu .nav .nav-item{
        text-align: center;
    }
}

//  COL-XS
@media screen and (max-width: 700px){
    .ownerHeader .columnsHeader .colHeader.colSearch{
        flex-direction: column;
    }
}

//  COL-XS
@media screen and (max-width: 650px){
}

//  COL-XS
@media screen and (max-width: 575px) {
    .ownerHeader .columnsHeader FORM[name=search]{
        width: 100%;
    }
}

//  MICRO COL-XS
@media screen and (max-width: 480px) {
}















