/* FOOTER */


/* vhod */
/*======================================================================================*/
.vhod {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 20px;
    background: rgba(255,255,255,0.4);
    border-radius: 3px;
    color: #3f3f3f;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    width: 120px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}
.vhod span {
    opacity: 0.8;
}
.vhod img {
    opacity: 0.7;
}

.vhod:hover {
    color: #3f3f3f;
    border: 1px solid #3f3f3f;
    background: rgba(255,255,255,0.8);
}

.vhod:hover span{
    opacity: 1.0;
}
.vhod:hover img {
    opacity: 0.9;
}


/*======================================================================================*/
/* /vhod */

/* address grx */
/*======================================================================================*/


:root{
    /* FORM */
    --label-size: 1.0em;
    /* checkbox radio */
    --check-radio-ind: 1rem;
    --check-radio-size: 1.125em;
    --check-radio-gap: 0.5em;
    --check-icon-size: 0.8em;
    --check-radio-brs: 25%;
    --check-radio-bc: #fff;
    --check-radio-brd:  1px solid #adb5bd;
    --check-radio-brd-hover: #b3d7ff;
    --check-radio-bc-active: #b3d7ff;
    --check-radio-brc-active: #b3d7ff;
    --check-radio-box-shd-focus: 0 0 0 0.02rem rgba(0, 123, 255, 0.25);
    --check-radio-box-brc-focus:#80bdff;
    --check-radio-box-dsbl:#e9ecef;
    --check-icon-col: #202020;
    --radio-icon-col: #5f5f5f;
    --radio-icon-size: 10px;
}

            [type="checkbox"], [type="radio"] {
                width:  var(--check-radio-size);
                height:  var(--check-radio-size);
            }

            .form-line {
                margin: 10px;
                display: flex;
            }

            label.radio,
            label.checkbox {
                display: flex;
                align-items: center;
                position: relative;
            }
            /*label.radio:not(:first-child),
            label.checkbox:not(:first-child){
                margin-left: var(--check-radio-ind);
            }*/
            label.radio > span:last-child,
            label.checkbox > span:last-child {
                margin-left: var(--check-radio-gap);
            }
            label.radio>input,
            label.checkbox>input {
               position: absolute;
                z-index: -1;
                opacity: 0;
            }
            .label-text {
                display: flex;
                align-items: center;
                font-size: var(--label-size);
            }
            

            span.checkbox-view {
                font-size:  var(--check-radio-size);
                display: flex;
                width: 1.0em;
                height: 1.0em;
                background-color: var(--check-radio-bc);
                border: var(--check-radio-brd);
                border-radius: var(--check-radio-brs);
                overflow: hidden;
            }
            .check-icon {
                display: block;
                opacity: 0;
                margin: auto;
                font-family: 'fontello';
                font-style: normal;
                font-size: var(--check-icon-size);
                color: var(--check-icon-col);
            }
            span.radio-view {
                font-size:  var(--check-radio-size);
                display: flex;
                justify-content: center;
                align-items: center;
                width: 20px;
                height: 20px;
                background-color: var(--check-radio-bc);
                border: var(--check-radio-brd);
                border-radius: 50%;
                overflow: hidden;
            }
            .radio-icon {
                display: block;
                opacity: 0;
                font-family: 'fontello';
                font-style: normal;
                /*font-size: var(--radio-icon-size);*/
                width: var(--radio-icon-size);
                height: var(--radio-icon-size);
                border-radius: 50%;
                background-color: var(--radio-icon-col);

            }

            label.radio > input:checked + span > .radio-icon,
            label.checkbox > input:checked + span > .check-icon {
                opacity: 1;
            }
            label.radio>input:not(:disabled):not(:checked)+span:hover,
            label.checkbox>input:not(:disabled):not(:checked)+span:hover {
                border-color: var(--check-radio-brd-hover);
            }
            label.radio>input:not(:disabled):active+span,
            label.checkbox>input:not(:disabled):active+span {
                background-color: var(--check-radio-bc-active);
                border-color: var(--check-radio-brc-active);
            }
            label.radio>input:focus+span,
            label.checkbox>input:focus+span {
                box-shadow: var(--check-radio-box-shd-focus);
            }
            label.radio>input:focus:not(:checked)+span,
            label.checkbox>input:focus:not(:checked)+span {
                border-color: var(--check-radio-box-brc-focus);
            }
            label.radio>input:disabled+span,
            label.checkbox>input:disabled+span {
                background-color: var(--check-radio-box-dsbl);
            }


/* popup */
.popup {
    position: fixed;
    z-index: 100;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; 
    background-color: rgba(100, 100, 100, 0.25);  
}
.popup.hidden {
    display: none;
}


.popup-window {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    border: 0.125em solid #b2bcc9;
    border-radius: 0.5em;
    padding: 3.0em;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #202020;
    font-weight: 600;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
}
.popup-close {
    width: 1.25em;
    height: 1.25em;
    position: absolute;
    right: 3px;
    top: 1px;
    cursor: pointer;
}
.popup-close:before {
    content: '';
    width: 100%;
    height:0.1875em;
    border-radius: 0.09em;
    background-color: #656565;
    transform: rotate(45deg);
    position: absolute;
    left: 0px;
    top: 50%;
}
.popup-close:after {
    content: '';
    width: 100%;
    height:0.1875em;
    border-radius: 0.09em;
    background-color: #656565;
    transform: rotate(-45deg);
    position: absolute;
    left: 0px;
    top: 50%;
}

.content-text {
    margin: 30px 0;
}
.question-conainer {
    margin: 40px 0;    
}           
.question__head {
    color: #000000;
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 700;
}
.radio-block {
    margin-left: 20px;
    display: flex;
    justify-content: flex-start;

}
.question-conainer .radio {
    margin: 0px 10px;
}
.question-conainer .label-text {
    font-weight: 600;
    color: #000000;
}
.question-conainer  .question {
    margin: 35px 0 17px;
    padding-bottom: 18px;
    border-bottom: 1px solid #b2bcc9;
    display: flex;
    justify-content: space-between;
     align-items: center;
}
.result {
    margin: 30px 0;
}
.result__head {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    width: 60%;
    float: left;
}
.result-block {
    display: flex;
    float: right;
}

.result-line {
    margin: 5px;
    font-size: 16px;
    font-weight: 400;
}
.result-container {
    margin: 40px 0;
}



.footer_font,
.footer_font a {
  color:#010101;
  font-size: 14px;
  line-height: 21px;
}
.grx {
    text-align: right;
    float: right;
    padding-top: 5px;
}
.grx a.grx_icon {
    text-decoration:none;
}
.grx a.grx_icon img {
    position:relative;
    top:2px;
}
.grx a:hover, .grx a:visited,
.grx a{
	color:black;
}
.cop {
    text-align: left;
    float: left;
    padding-top: 5px;
    padding-bottom: 10px;
}
/*======================================================================================*/
/* /address grx */



/*HEADER */

/* logo */
/*======================================================================================*/


#logo {
    position: absolute;
    max-width:430px;
    bottom: 0px;
    right:23px;
    overflow: hidden;
}
#logo img {
    width: 100%;
}


/*======================================================================================*/
/* /logo */


/* top_inf */
/*======================================================================================*/

.top_inf {
	color:#eb0053;
    font-size:35px;
    line-height: 35px;
    font-weight: bold;
    width: 353px;
    height: 42px;
    position: absolute;
    left: 320px;
    top:12px;
    text-align: center;
}
.top_inf > span {
    color: #000000;
    font-size:20px;
}

.top_inf_left {
    position: absolute;
    left:40px;
    top: 45px;
    width:290px;
    max-height:140px;
}
.top_inf_left p {
    padding-bottom:15px;
}

.shema_pro {
    padding:0px 0px 10px 26px;
    background: no-repeat left top url(../images/design/shema_pro.png);
}
.karta_sita {
    padding:0px 0px 10px 26px;
    background: no-repeat left top url(../images/design/karta_sita.png);
}
.top_inf_left,
.shema_pro a,
.karta_sita a {
    color: #000000;
    font-size: 18px;
}

.top_inf_right {
    position: absolute;
    right:40px;
    top: 45px;
    width:290px;
    max-height:140px;
    color: #c95c02;
    font-size: 24px;
    line-height: 32px;
    text-align: right;
    font-weight: bold;

}
.top_inf_right span {
    color: #000000;
    font-size: 18px;
    font-weight: normal;
}
.top_inf_right a.button {
    width:196px;
    border-radius:5px;
    font-size: 18px;
    float: right;
    margin-top:12px;
}


/*======================================================================================*/
/* /top_inf */



/* CONTENT */

/* block */
/*======================================================================================*/

.block  {overflow:hidden;}
.blockimg {
  float:left;
  text-align:center;
  overflow:hidden;
  margin-top:3px;
  padding-left:1px;
  padding-right: 15px;

}
.blockimg img {margin-bottom:-3px;}
.blockimg a {text-decoration:none;}

.block p.more,
.block p.back {margin-bottom:0px;}

.liquid  .blocktext {margin-left:0px !important;}
.liquid  .blockimg {margin-right:16px; margin-bottom:4px;}



/*======================================================================================*/
/* /block */


/* gallery */
/*======================================================================================*/

.gallery {
    width:100%;
    margin-left:0px;
    margin-bottom:10px;
    overflow: hidden;
}
.content .gallery li {
    display: inline-block;
    vertical-align:top;
    background:0;
    padding:0px;
    margin-right:65px;
    margin-bottom:24px;
    list-style: none;
    width: 172px;
}
.gallery li img {
    display: block;
    width: 100%;
}
.gallery li div a {
    display:block;
    text-decoration:none;
    position: relative;
}

.gallery li p.description {
    font-weight:normal;
    margin-bottom:0px;
}
.gallery p.more,
.gallery p.back {
    margin-bottom:0px;
}

/*======================================================================================*/
/* /gallery */


/* gallery_foto_scalable */
/*======================================================================================*/

.gallery_foto_scalable {
    width:100%;
    margin-left:0px;
    margin-bottom:10px;
    overflow: hidden;
}
.content .gallery_foto_scalable li {
    display: inline-block;
    vertical-align:top;
    background:0;
    padding:0px;
    margin-left:5%;
    width: 30%;
    margin-bottom:24px;
    list-style: none;
}
.content .gallery_foto_scalable li:nth-child(3n+1) {
     margin-left:0;
}
.gallery_foto_scalable li img {
    margin-bottom: -3px;
    width: 100%;
}
.gallery_foto_scalable li div a {
    display:block;
    text-decoration:none;
    position: relative;
}


/*======================================================================================*/
/* /gallery_foto_scalable */


/* mapa_pro*/
/*======================================================================================*/

.mapa_pro {
   max-width: 600px;
}
.mapa_pro img {
  width: 100%;
}

/*======================================================================================*/
/* /mapa_pro*/


/* docdow*/
/*======================================================================================*/

 .content ul.docdow li {
  margin-bottom:10px;
  line-height: 16px;
}
.content ul.docdow li a {
  font-size: 12px;
}

/*======================================================================================*/
/* /docdow*/


/* РќРёР¶РЅРёР№ Р±Р»РѕРє*/
/*======================================================================================*/

.bb_contact {
    width: 30%;
    float: left;
}
.bb_contact_,
.bb_contact_ a{
    color: #282828;
    font-size: 16px;
    padding-bottom:18px;
}
.bb_contact_ a:hover{
    color: #000000;
    text-decoration: none;
}
.bb_contact .add_head,
.bb_menu .add_head,
.bb_fdb_body .add_head{
    margin-bottom: 20px;
}
 .bb_contact_mail{
     padding: 0 0px 10px 30px;
     background: no-repeat left 5px url(../images/design/bb_contact_mail.png);
 }
 .bb_contact_tel {
     padding: 0 0px 10px 30px;
     background: no-repeat left 1px url(../images/design/bb_contact_tel.png);
 }
.bb_contact_mobile{
    padding: 0 0px 10px 30px;
    background: no-repeat left 1px url(../images/design/bb_contact_mobile.png);
}
.bb_contact_addr {
    padding: 0 0px 10px 30px;
     background: no-repeat left 1px url(../images/design/bb_contact_addr.png);
 }
.bb_contact_mail a,
.bb_contact_mail a:visited,
.bb_contact_addr a,
.bb_contact_addr a:visited{
    color: #000;
}

.bb_menu {
    width: 22%;
    padding-left: 9%;
    float: left;
    background: no-repeat left 24px url(../images/design/bb_razd.png);
}
    .bb_menu .add_head {
        padding-left:22px;
    }

    .bb_menu ul.top_menu {
        padding-left:22px;
        position:relative;
    }
    .bb_menu ul.top_menu li {
        padding-bottom:10px;
        background: url("../images/design/dotBottomMenu.png") left 9px no-repeat;
        padding-left: 10px;
    }
    .bb_menu ul.top_menu li a {
        color: #000000;
        font-size: 16px;
        text-decoration: none;
    }
    .bb_menu ul.top_menu li a:hover {
        color: #000;
        text-decoration: underline;
    }

    .bb_menu .tm2u {
	background: /*url('images/tmgrad.png')*/ repeat-x scroll left bottom #fff5e0;
	border:1px solid white;
	border-top:none;
	left: 150px;;
	padding:5px 0px 15px 0px;
	position: absolute;
	text-align: left;
	top: 0px;
	z-index: 500;
	box-shadow: 0px 0px 5px #333;
	border-radius:0 0 3px 3px;
	display: none;
}


.bb_fdb {
    float: left;
    width: 40%;
    min-height: 202px;
    background: no-repeat left 24px url(../images/design/bb_razd.png);
}
.bb_fdb_body {
    padding-left:22px;
}

.bb_fdb_text {
    color:#000000;
    font-size: 16px;
    line-height: 26px;
    margin-bottom:18px;
}

a.bb_fdb_otpr {
     width:86px;
}

/* bb_fdb */
.bb_fdb {
    float: left;
    width: 39%;
    min-height: 202px;
    background: no-repeat left 24px url(../images/design/bb_razd.png);
}
.bb_fdb_body {
    padding-left:34%;
    max-width:390px;
    margin: 0 auto;
}
a.bb_fdb_otpr {
    width:86px;
}
.bb_fdb_line {
    margin-bottom: 5px;
}
.bb_fdb_left {
    width:103px;
    float: left;
    color:#000;
    font-size: 16px;
}
.bb_fdb_right {
    margin-left:103px;
}
.for_bb_captcha {
    float: left;
    width:48%;
    margin-right:2%;
}
.for_bb_captcha img {
    width: 100%;
}
.bb_fdb_right input,
.bb_fdb_right textarea {
    width: 100%;
    border: 0;
    border-radius:3px;
    background: #fff;
    padding:3px 2px;
}
.bb_fdb_right textarea {
    height:50px;
}
img.bb_captcha  {
    float: left;
}
.bb_captcha_cod {
    float: left;
    width: 50%;
}
a.bb_ca,
a.bb_ca:hover,
a.bb_ca:visited {
    color: #000;
    font-size: 11px;
    white-space: nowrap;
}

/*======================================================================================*/
/* /РќРёР¶РЅРёР№ Р±Р»РѕРє*/


/* cp */
/*======================================================================================*/

.gallery.gallery_cp li {
    vertical-align:top;
    background:0;
    padding:0px;
    margin-right:65px;
    margin-bottom:24px;
    list-style: none;
    width: 166px;
    background: no-repeat left top url(../images/design/cp_fon.png);
    overflow: hidden;
}
.gallery.gallery_cp li div {
    padding: 19px 25px 0px 19px;
    height:166px;
}

.gallery.gallery_cp li img {
    display:block;
    margin: 0 auto 2px;
}
.gallery.gallery_cp li div a {
    text-decoration: underline;
    display:block;
    text-align: center;
    color:#000000;
    font-size: 11px;
    font-weight: bold;
}
.gallery.gallery_cp li div a:hover {
    text-decoration: none;
}

/*======================================================================================*/
/* cp */
body{
    position: relative;
}
.bgModalWindow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.251);
    display: none;
}
.wrapMw{
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.mw{
    position: relative;
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    padding: 47px  54px 67px;
    box-sizing: border-box;
}

.btnMwClose{
    width: 24px;
    height: 25px;
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    border: none;
}

.btnMwClose img{
    width: 100%;
    height: 100%;
}
.mw__title{
    color: #000000;
font-family: "Arial";
font-size: 22px;
font-weight: 700;
text-align: center;
line-height: 1.2;
}
.bgModalWindow_active{
    display: block;
}



/*++ mobale ++*/
/* mobale - block */
.decstop-block {
    display: block !important;
}
.mobaile-block {
    display: none !important;
}
.mobile_device .decstop-block {
    display: none !important;
}
.mobile_device .mobaile-block {
    display: block !important;
}
/* mobale - inline-block */
.decstop-inline-block {
    display: inline-block !important;
}
.mobaile-inline-block {
    display: none !important;
}
.mobile_device .decstop-inline-block {
    display: none !important;
}
.mobile_device .mobaile-inline-block {
    display: inline-block !important;
}
/* mobale - flex */
.decstop-flex-block {
    display: flex !important;
}
.mobaile-flex-block {
    display: none !important;
}
.mobile_device .decstop-flex-block {
    display: none !important;
}
.mobile_device .mobaile-flex-block {
    display: flex !important;
}



.messenger-block {
    display: inline-flex;
    justify-content: flex-start;
}

.messenger-block a {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    margin: 0 2px;
}
.messenger-block a img {
    width: 100%;
}

.messenger-block a:hover {
    opacity: 0.8;
}

.messenger-block img {
    display: block;
    border: 0;
    margin: 0;
}

.mes-icon {
    display: inline-block;
    width: 32px;
    position: relative;
    top: 0px;
    left: 10px;
    margin: -14px 0;
}
.mes-icon img {
    width: 100%;
}

.messenger-block-mob {
    display: none;
}
.mobile_device .messenger-block-mob {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    position: fixed;
    z-index: 99;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background:rgba(255, 255, 255, 0.65);
    border-top: 5px solid #cccccc;
} 
.messenger-block-mob a {
    display: block;
    margin: 0 20px;
    width: 150px;
}
.messenger-block-mob a img {
    width: 100%;
}
.mobile_device .shadowBlock {
    margin-bottom: 180px;
}

/* popap */

#popap_container {
   width: 100%;
   height:100%;
   position: fixed;
   left:0px;
   top: 0px;
   z-index: 2200;
}
#popap_container_fon {
   width: 100%;
   height:100%;
   position: fixed;
   left:0px;
   top: 0px;
   display:none;
   z-index: 2000;
}
.alert_container {
    background: #ffffff;
    border: 1px solid #dddce3;
    border-radius:0px;
    box-shadow: 0 4px 4px rgba(100,100,100,0.4);
    position:relative;
    margin-left: auto;
    margin-right: auto;
    display:none;
    z-index: 10000 !important;
    padding: 50px 60px; box-sizing: border-box;
}



.popap_clouse {
    width:20px;
    height:20px;
    position: absolute;

    cursor: pointer;
    z-index: 100;
}
.popap_clouse:before {
    content: "";
    width: 141%;
    position: absolute;
    left: 0px;
    top: 0px;
    transform-origin: left center;
    transform: rotateZ(45deg);
}
.popap_clouse:after {
    content: "";
    width: 141%;
    position: absolute;
    right: 0px;
    top: 0px;
    transform-origin: right center;
    transform: rotateZ(-45deg);
}

.popap_clouse {
    width:20px;
    height:20px;
    right:20px;
    top:20px;
}
.popap_clouse:before,
.popap_clouse:after {
    height: 2px;
    background: #6897b2;
}
.popap_clouse:hover:before,
.popap_clouse:hover:after {
    height: 2px;
    background: #52819c;
}



#order_alert,
#payment_alert {
    display:none;
}

.hd {
    color: #55849f; font-size: 22px; line-height: 30px; font-weight: bold;
    margin-bottom: 20px; text-align: center;
}



.alert_head {
    color:#ce1058;
    font-size: 20px;
    font-weight: bold;
    padding: 22px 20px 22px;
}

.alert_text {
    color: #000000;
    font-size: 18px;
    line-height: 34px;
    padding:0px 20px 20px;
}
.alert_text span {
    font-size: 24px;
}

.alert_text ul {
    text-align: left;
    padding-left:40px;
    padding-bottom:20px;
}

.alert_text ul li {
    padding-left:18px;
    background: no-repeat left 15px url(../images/design/alert_li_mark.png);
    font-size: 16px;
    font-weight: bold;
}

.alert_text.red {
    color: #ce1058;
    font-size: 16px;
     line-height: 28px;
     font-weight: bold;
}

.pmnt {
    text-align: left;
}
.pmnt .alert_text {
    line-height: 22px;
    padding:0px 0px 20px;
}

.pmnt .alert_text_min  {
      font-size: 13px;
      padding-top:10px;
      font-weight: bold;
}
.pmnt table {
    margin:0px 0px 20px;
}
.pmnt .content  {
    padding: 0px 30px;
}
.pmnt .alert_head {
    padding-left:0px;
}

#payment_alert2 {
    display:none;
}


.card_inf_alert {
    padding-top:30px;
    padding-bottom:15px;
    color:#000000;
    font-size: 16px;
    font-weight: bold;
}

.card_inf_in a {
    color:#CE1058;
    font-size: 16px;
    font-weight: bold;
}

#card_inf {
    display:none;
}


.fopopa {
    display: none;
}


@media screen and (max-width: 1024px){
  .alert_container {
    padding: 50px 10px;
  }
  #popap_container {
    position: absolute;
  }
}


.container_popAp { display: none; }
.form_popAp {
    box-sizing: border-box;
}


.np_form_popAp .hd {
    margin-bottom: 23px;
    color: #336699; font-size:24px;
    text-align: center;
}
.form_popAp .form_line {

}

.form_popAp input[type=text],
.form_popAp input[type=password] { height: 55px; width: 100%; }
.form_popAp input[type=text],
.form_popAp input[type=password] { padding: 3px 18px; box-sizing: border-box; }
.form_popAp .form_line_textarea,
.form_popAp textarea { height: 163px;  width: 100%;}
.form_popAp .form_line,
.form_popAp .form_line_textarea{ margin-bottom: 15px; }
.form_popAp .form_line_button { padding-top: 10px; }
.form_popAp .form_line_button,
.form_popAp input[type=submit],
.form_popAp input[type=button] { height: 57px;  width: 100%;}

.form_line-title {
    padding: 3px 0px 3px;
    font-size: 14px;
    color: #000;
    font-weight: bold;
}


.form_line_flex {
    display: flex;
    justify-content: flex-start;  justify-content: space-between;
}
.form_line_flex_left,
.form_line_flex_right {
    width: 50%; width: auto;
}


.form_left {
    box-sizing: border-box;
    margin: 40px 0;
    width: 250px;
}
.form_left .hd {
    margin-bottom: 20px;
    color: #336699; font-size:24px;
    text-align: center;
}
.form_left .form_line {
    position: relative;
}

.form_left input[type=text],
.form_left input[type=password] { height: 36px; width: 100%; }
.form_left input[type=text],
.form_left input[type=password] { padding: 3px 18px; box-sizing: border-box; }
.form_left .form_line_textarea,
.form_left textarea { height: 163px;  width: 100%;}
.form_left .form_line,
.form_left .form_line_textarea{ margin-bottom: 12px; }
.form_left .form_line_button { padding-top: 10px; }
.form_left .form_line_button,
.form_left input[type=submit],
.form_left input[type=button] { height: 42px;  width: 100%;}


.password-control {
    position: absolute;
    top: 11px;
    right: 6px;
    display: inline-block;
    width: 19px;
    height: 14px;
    background: url(../images/design/eye-f.png) 0 0 no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.password-control.view {
    background: url(../images/design/eye-t.png) 0 0 no-repeat;
    background-size: 100% 100%;
}





.reg_button {
    color: #333333;
    font-size: 14px;
    line-height: 1.0;
    font-weight: 400;
    text-decoration: underline;
    background: transparent;
    border: none;
    height: 24px;
    padding: 0px 5px 3px;
    position: relative;
    left: -2px;
    cursor: pointer;
}
.reg_button:hover {
    text-decoration: none;
}

.lk_block {
    display: flex;
    justify-content: space-between;
}
.lk_block_left {
    width: 297px;
    min-width: 297px;
    margin-right: 32px;
}
.lk_block_right {
    flex-grow: 1;
}
.lk_block_right  .content {
    max-width: 100%;
}


.greeting_block {
    background: #e2e2e2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    position: relative;
}

.greeting_block_text {
    width: 180px;
}

.greeting_zdrv {
    display: block;
    color: #333333;
    font-size: 14px;
    margin-bottom: 3px;
}
.greeting_fi {
    display: block;
    color: #333333;
    font-size: 18px;
    font-weight: bold;
}


.lk_menu_linck {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 56px;
    margin-top: 4px;
    background: #e2e2e2;
}

.lk_menu_linck,
.lk_menu_linck:hover,
.lk_menu_linck:visited {
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
}
.lk_menu_linck:hover:after {
    content: '';
    display: block;
    width: 3px;
    height: 56px;
    background: #a80400;
    position: absolute;
    left: 0px;
    top: 0px;
}

.lk_menu_linck__icon {
    margin-top: 3px;
    margin-left: 30px;
    margin-right: 14px;
}



/* f_tip2 */
.f_tip2 input[type="email"]{height:55px;}
.f_tip2 input[type="text"]{height:55px;}
.f_tip2 .line_name {
    padding-bottom: 7px;
    color: #595959;
    font-size: 16px;
    font-weight: 700;
    /*font-family: 'Open Sans', sans-serif;*/
}
.f_tip2 textarea {height:253px;}
.f_tip2 .form_line,
.f_tip2 .form_line_textarea {margin-bottom: 20px; position: relative;}
.f_tip2 .form_button{
    display:flex;
    justify-content: flex-end;
    overflow:hidden; padding-top:10px; text-align: right;
    background: no-repeat right 10px url(../img/images/ofza.png);
}
.f_tip2 .form_button input{width:120px;}
.f_tip2 input[type="submit"]{
    padding: 1px 10px 0;
    width: 247px;
    height: 42px;
}
.f_tip2 input[type="submit"].incart{
    background: #737373;
    border-bottom: 2px solid #404040;
}

.f_tip2 .label {
    font-weight: bold;
}


input[type="text"],input[type="password"],textarea,
input[type="submit"],input[type="button"] {
    display:inline-block;
    box-sizing:border-box;
    width:100%;
    padding: 3px 15px;
}
textarea { resize: none; }


.w480 {
    width: 100%;
    max-width: 480px;
}

.mb60 {
    margin-bottom: 60px;
}


#center_lk{
    position:relative;
    min-height:500px;
    margin-left:0px;
    overflow: hidden;
}


.formAuthor{
    box-sizing:border-box;
    border: 1px solid #8f8f9d;
    padding: 20px 15px;
}

/*  */


.mb-0 {
    margin-bottom: 0px !important;
}






