/* *{
margin:0;
padding:0;
box-sizing: boder-box;
} */

/* Указываем box sizing */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&subset=cyrillic');
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}
a{
  text-decoration: none;
}
/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
/* a:not([class]) {
  text-decoration-skip-ink: auto;
} */

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body{font-family: 'Roboto', sans-serif;}

body.lock{
overflow: hidden;
}
.box_info{
  display: none;
}

.btn_green{
-webkit-tap-highlight-color: rgba(0,0,0,0);
font-family: 'Open Sans', sans-serif;
box-sizing: border-box;
outline: 0!important;
text-decoration: none;
padding: 6px 12px;
margin-bottom: 0;
font-size: 18px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
/* vertical-align: middle; */
touch-action: manipulation;
cursor: pointer;
user-select: none;
border-radius: 4px;
color: #fff;
display: block;
width: 100%;
background: #2ecc71;
border: 2px solid #2ecc71;
}

.btn_green_w{
  box-sizing: border-box;
  cursor: pointer;
  border: 2px solid  #2ecc71;
  color: #2ecc71;
  font-style: normal;
  font-weight: 400;
  padding: 3px 12px;
  display: block;
  width: 80%;
  text-align: center;
  border-radius: 4px;

}
.btn_green::hover_w{
  color: white;
}
/* .wrap{
	
} */
.box_info{

  display:flex;
  flex-direction: column;
  position:absolute;
  position:fixed;
  left:-300px;
  top:7vh;
  width:300px;
  height:86vh;
  background:rgb(51 204 255 /1);
  z-index:1000;
  transition:0.5s;
  color:white;
  padding:10px;
  /* border-radius: 5px; */
  border:2px solid #000884;
}
.box_info.top{
  left:0;
 }
.close_ico {
  position: absolute;
  cursor: pointer;
  right: 15px;
  top: 15px;
  width: 27px;
  height: 27px;
  opacity: 0.3;
}
.close_ico:hover {
  opacity: 1;
}
.close_ico:before, .close_ico:after {
  position: absolute;
  left: 12px;
  content: ' ';
  height: 28px;
  width: 3px;
  background-color: red;
}
.close_ico:before {
  transform: rotate(45deg);
}
.close_ico:after {
  transform: rotate(-45deg);
}
.pi{
  font-size:20px;
  text-decoration:none;
  margin-bottom: 20px;
}
.ico_big{
  height:47px;
  width:auto;
  border-radius:5px;
  margin-right:5%;
  border:2px solid rgb(0, 17, 255);
  } 				
            
  .nofc{
  font-size:20px;			
  }		
                
  .title_company	{
  padding:15px;
  font-size:20px;	
  text-align:center;		
  }	
                    
  .info_phone{
  display:flex;
  align-items:center;
  justify-content:center;
  /* background-color:blue; */
  position:sticky;
  bottom:10px;	
  }
  .box_bottom_phone{
    text-decoration: none;
    font-size: 30px;
    color: #fff;

  }







.header {
    position:fixed;
    top:0;
    left:0;
    display:flex;
    width:100vw;
    height:7vh;
    background: linear-gradient(to right, #000884, #000fff);
    align-items: center;
}

.header_items {
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100vw;		
    height:5vh;		
    padding:0 20px;
}
.ico {
    height:100%;
    width:auto;
    border-radius:50%;
}
/* nav { 
    position: relative; 
}  */

.body {
    display:flex;
    max-width: 100vw;
    min-height: 100vh;
}
.left_menu {
    position:fixed;
    top:7vh;
    width:300px;
    height:86vh;
    background-color:#3500ff;
    left:0;
}
/* .left_menu_items {
    
} */
.nameofcompany {
    display: flex;
    align-items: center;
}
.ico_left_menu {
    margin: 1vw;
  	width: 70px;
  	height: auto;
  	border:3px solid rgb(204, 0, 255);
  	border-radius: 3px;
}
.name_of_company_left_menu {
    color: snow;
    font-size: 1.3em;
}
.nav-links {
    display: flex;
    flex-direction:column; 
    width: 100%; 
    height: 60vh; 
    justify-content: space-around;
}
.nav-links li a { 
    color: white;
    text-decoration: none; 
    font-size: 18px;
    margin-left: 2vw; 
}
/* .li {
} */
.content {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    padding: 8vh 1vw 8vh 310px;
    /* margin:8vh 7px; */
    display:flex;
    flex-wrap:wrap;
    align-content: flex-start;
    /* align-items: stretch; */
    /* flex-flow: wrap; */
    background: rgb(102 102 180 /.2);
}

.footer {
    display:flex;
    position:fixed;
    left:0;
    bottom:0;
    align-items:center;
    width: 100vw;
    height: 7vh;
    background: linear-gradient(to right, #000884, #000fff);
    padding: 0 20px;
}
.foote_items {
    color:white;
}







.text{
    width:194px;
    min-height:100px;
    background-color:white;
    /* border-radius:5px; */
    padding:7px;
    margin:2px 5px;
    border:1px solid grey;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

    .text2{
      width:194px;
      min-height:150px;
      background-color:white;
      /* border-radius:5px; */
      padding:7px;
      margin:2px 5px;
      border:1px solid grey;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
      } 

.content_group_items{
    display:flex;
    flex-direction:column;
    /* flex-wrap:wrap; */
    /* width:100%; */
    /* height:100%; */
    background-color:#ff325e4b;
    /* background-color:#a7b9f5; */
    border: 1px solid rgb(102 102 180 /0.5);
    border-radius:5px; 
    padding:2px 1px;
    margin:7px 0;
}
.group_items_head{
    display:flex;
    align-items:center;
    justify-content: space-between;
    width:98%;
    padding:3px 7px;
    /* background-color: brown; */
    }       				
.group_items_someproblems{
    display:flex;
    font-size:1.4em;
    background-color: #fff;
}
.p_group_items_someproblem{
  padding: 0 10px;
  color:white;
  font-size: 1em;
  /* background-color: cyan; */
}
    .group_items_dellButton{  
    /* jutstify-content:flex-end; */
    font-size:1em;
    color:white;
    /*background-color:blue;*/
    text-align:right;
    }
    .btndelord{
      font-size: small;
      background-color: rgb(255, 27, 27);
      border: 1px solid red;
      color: white;
      border-radius: 2px;
      cursor: pointer;
    }
    .group_items_body{
    display:flex;
    flex-wrap:wrap;
    align-items: stretch;
    justify-content: start;
    /* width:100%	 */
    }


 /* -------------указание стоимости----------*/
.prform{
    display: flex;
}            
.order_price {
    display: flex;
    flex-direction: column;
    width:242px;
    min-height:100px;
    padding:7px;
    margin:2px 5px;
    border:1px solid grey;
    background-color: rgb(246, 246, 246);

}
.op_head {
  flex: 1 1 auto;
}
.oph_items {
  display: flex;
}
.oph_time {
  margin: 5px 0;
  display: flex;
  justify-content: center;
}
/* .op_body {
}
.ophb_price {
} */
.label_price{
  font-size: 0.8em;
}
.inpprice {
  padding: 3px;
  width: 99%;
  border-radius: 3px;
}
.ophb_give {
  width: 100%;
  margin: 5px 0 3px;
}
.ophb_give_button{
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
  /* background-color: rgb(10, 248, 10); */
  background-color: #2ecc71;
  color: #fff;
}
              /* -------------указание стоимости-------------- */
              
              /* ------------предложение цены услуг--------------- */
.price{
    display: flex;
    flex-direction: column;
    width:194px;
    min-height:100px;
    padding:7px;
    margin:2px 5px;
    border:1px solid grey;
    background-color: rgb(246, 246, 246);
}
.price_window {
  display: flex;
  justify-content: center;
  padding: 3px 5px;
  margin: -7px -7px 10px -7px;
  font-size: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  min-width: 40%;
  background-color: rgb(126, 195, 223,0.3);
}
.price_head{
  flex: 1 1 auto;
}
/* .price_body{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: space-between;
} */
.name_of_company {
  margin: 10px auto;
  cursor: pointer;
  display: flex;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  padding: 0 5px;
  font-size: 17px;
  width: 100%;
  /* background-color: burlywood; */
}

.call_button {
  padding: 3px 3px;
  bottom: 0;
  /* width: 30%; */
  /* font-size: 22px; */
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  /* border: 1px solid rgb(10, 248, 10); */
  border-radius: 4px;
  /* background-color: rgb(253, 216, 4); */
}
.well_done {
  padding: 3px 5px;
  display: flex;
  justify-content: center;
  width: 100%;
  
  margin-top: 8px;
  /* background-color: rgb(202, 222, 135); */
}

              /* -----предложение цены услуг---------- */

      /* --------------------------------------------
      -------------------------------------------- */

/* --------------------закрытый ордер-------------------- */

.ord_done {
    display: flex;
    flex-direction: column;
    /* width:194px; */
    width: 320px;
    min-height:100px;
    padding:7px;
    margin:2px 5px;
    border:1px solid grey;
    background-color: rgb(246, 246, 246);
}
.ord_done_head {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}
.ordditims {
  width: 74%;
}
.butblock {
  display: flex;
  flex-direction: column;
  width: 26%;
  /* background-color: rgb(245, 242, 201); */
}
.repbut{
  width: 100%;
  padding: 3px 0;
  text-align: center;
  /* background-color: #2ecc71; */
  font-size: 10px;
  color: #2ecc71;
  border: 2px solid #2ecc71;
  border-radius: 3px;
  
}
.dellbut{
  width: 100%;
  padding: 3px 0;
  /* background-color: #2ecc71; */
  font-size: 10px;
  color: #e43939;
  border: 2px solid #e43939;
  border-radius: 3px;
  text-align: center;
  margin-bottom: 5px;
}
.ord_done_body {
  display: flex;
  flex-direction: column;
}
.odprice {
  display: flex;
  align-items: center;
}
.odppice {
  display: flex;
  justify-content: center;
  min-width: 25%;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 30px;
  background-color: rgb(126, 195, 223,0.3);
  margin-left: -7px;
  padding: 0 10px;
 
}
.orddnofc {
  max-width: 75%;
  padding: 0 10px;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  cursor: pointer;
}
.callbutton {
  margin: 10px auto;
  width: 80%;
  background: #2ecc71;
  color: #ffffff;
  border: 2px solid #2ecc71;
  border-radius: 3px;
  padding: 5px auto;
  text-align: center ;
  font-size: 22px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
.note {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* background-color: darkorange; */
}
.nbutblock{
  display: flex;
  width: 100%;
  margin: 5px auto;
}
.note_button{
  width: 70%;
  padding: 3px 0;
  /* background-color: #2ecc71; */
  font-size: 12px;
  color: orange;
  border: 2px solid orange;
  border-radius: 3px;
  text-align: center;
}
.note {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* background-color: darkorange; */
  }
  .nbutblock{
  display: flex;
  width: 100%;
  margin: 5px auto;
  }
  .note_button.v{
  width: 70%;
  padding: 3px 0;
  /* background-color: #2ecc71; */
  font-size: 12px;
  color: orange;
  border: 2px solid orange;
  border-radius: 3px;
  text-align: center;
  transition: 0.5s;
  }
  .note_item.v{
  width: 100%;
  height: 100%;
  display: block;
  transition: 5s;
  }
  .note_item_area{
  width: 100%;
  padding: 15px;
  transition: 5s;
  }
  
  .addstbutt.v{
  display: block;
  width: 30%;
  bottom: 0;
  right: 0;
  font-size: 12px;
  color: white;
  background: orange;
  border: 2px solid darkorange;
  border-radius: 3px;
  padding: 3px 0;
  text-align:center;
  margin-left: 5px;
  transition: 0.5s;
  }
  .note_item{
    display: none;
    width: 100%;
    height: 0;
    
    }
    .addstbutt{
      display: none;
    width: 30%;
    bottom: 0;
    right: 0;
    font-size: 12px;
    color: white;
    background: orange;
    border: 2px solid darkorange;
    border-radius: 3px;
    padding: 3px 0;
    text-align:center;
    margin-left: 5px;
    transition: 0.5s;
    }
    .note_button{
      width: 100%;
      padding: 3px 0;
      /* background-color: #2ecc71; */
      font-size: 12px;
      color: orange;
      border: 2px solid orange;
      border-radius: 3px;
      text-align: center;
      transition: 0.5s;
      }
/* --------------------закрытый ордер-------------------- */

/* ----------new order---------- */
.box_add {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: rgb(246, 246, 246);
  /* background: rgb(240, 245, 255); */
  padding: 6px;
  border: 1px solid rgb(127, 161, 161);
  /* border-radius: 5px; */
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.box_title {
  text-align: center;
  font-size: 25px;
  margin: 15px 0;
  /* color: rgb(47, 102, 104); */
  color: darkslategrey;
}
.box_add_item {
  display: flex;
  width: 100%;
  /* border: 1px solid; */
}
.form_horizontal {
  width: 100%;
  /* display: flex; */
  /* flex-direction: column; */
  /* border: 1px solid; */
}
.box_add_item_blockk {
  display: flex;
  width: 100%;
  /* border: 1px solid; */
  /* flex: 1 1 auto; */
  
  /* background-color: burlywood; */
}
.form_inp_info {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  align-items: center;
  /* border: 1px solid ; */
  margin-bottom: 20px;
}
.control_label {
  /* text-align: left; */
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: darkslategrey;
  margin-bottom: 10px;
 
}
.form_input {
  display: flex;
  justify-content: center;
  width: 90%;

}
.form_control {
  display: flex;
  width: 90%;
  height: 5vh;
  cursor: pointer;
  border-radius: 4px;
  background-color: white;
}
.select-obl {
}
.select-city {
}
.select-usluga {
}
.hand_input {
  display: flex;
  width: 100%;
  
}
.hand_input-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form_control_description {
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  margin-bottom: 20px;
  cursor: pointer;
}

.but_submit {
  display: flex;
  justify-content: flex-end;
  margin: 0 10px 15px 0;
}
.but_subm_bot {
  color: #fff;
  /* background-color: #00bbd9; */
  border: none;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 18px;
  cursor: pointer;
  background: linear-gradient(to right, #010eca, #3240f6);
}





















/* ------------------------------------------------------media------------------------------------------ */

    @media (max-width: 767px){

.box_info.top{
      display:flex;
      position:absolute;
      position:fixed;
      top:0;
      left:0;
      min-width:100vw;
      height:100vh;
      background:rgb(51 204 255 /1);
      z-index:1000;
      transition:0.5s;
      color:white;
      padding:10px;
}
.pi{
  font-size:40px;
  text-decoration:none;
  margin-bottom: 20px;
}
.ico_big{
  height:90px;
  width:auto;
  border-radius:5px;
  margin-right:20px;
  border:2px solid yellow;
  } 				
            
  .nofc{
  font-size:25px;			
  }		
                
  .title_company	{
  padding:15px;
  font-size:25px;	
  text-align:center;		
  }	
                    
  .info_phone{
  display:flex;
  width:100%;
  align-items:center;
  justify-content:center;
  /*background-color:blue;*/
  position:fixed;
  bottom:10px;	
  }
              
.box_info{
      display:flex;
      flex-direction:column;
      position:absolute;
      position:fixed;
      top:0;
      left:-100vw;
      width:100vw;
      height:100vh;
      background: rgb(102 204 255 /.3);
      z-index:1000;
      transition:0.5s;
      color:white;
}
.close_ico {
  position: absolute;
  cursor: pointer;
  right: 32px;
  top: 27px;
  width: 27px;
  height: 27px;
  opacity: 0.3;
}
.close_ico:hover {
  opacity: 1;
}
.close_ico:before, .close_ico:after {
  position: absolute;
  left: 12px;
  content: ' ';
  height: 28px;
  width: 3px;
  background-color: red;
}
.close_ico:before {
  transform: rotate(45deg);
}
.close_ico:after {
  transform: rotate(-45deg);
}
/* --------info------- */
.nav{
  cursor: pointer;
}
.hamburger {
  display: flex;
  align-items: center;
  position: absolute;
  cursor: pointer;
  right: 25px;
  top: 50%;
  transform:translate(-25px, -50%);
  z-index: 622;
}
.hamburger:focus{
  outline: none;
}
.spann,
.spann::before,
.spann::after{
  display: block;
	position: absolute;
  width:30px;
 	height: 3px;
  background-color: white;
}	

.spann::before{
 	content: '';
	top: -10px;
}
.spann::after{
	content: '';
	bottom: -10px;
}
.spann::before,
.spann::after {
  	transition-duration: 0.3s, 0.3s;
  	transition-delay: 0.3s, 0s;
}
.spann::before {
  	transition-property: top, transform;
}
.spann::after {
  	transition-property: bottom, transform;
}
.spann.active{
    background: none;
}
.spann.active::before {
  	top: 0;
  	transform: rotate(45deg);
  	background-color: white;
}
.spann.active::after {
  	bottom: 0;
  	transform: rotate(-45deg);
 	 background-color: white;
}
.spann.active::before,
.spann.active::after {
 	 transition-delay: 0s, 0.3s;
}
/* .line {
    width: 30px;
    height: 3px;
    background: white;
    margin: 5px;
} */
.left_menu{
    position:fixed;
    top:7vh;
    width:75vw;
    height:86vh;
    background-color:#3500ff;
    left:-100vw;
    transition:0.5s;
}
              
.left_menu.active{	
    position:fixed;			
    top:7vh;																			
    left:0;
    transition:0.5s;
    padding: 0 7px;
}
.ico_left_menu {
  margin-top: 7px;
}
.nav-links { 
  display: flex;
  flex-direction:column; 
  list-style: none; 
  width: 100%; 
  height: 60vh; 
  justify-content: space-around;
  /*align-items: center; */
  margin-left: 10px;
  /*background-color:#2eff6b;*/
  }  								
  
/* .nav-links li a { color: white;
  text-decoration: none;
  font-size: 24px; 
} */
.nav-links li a { 
  margin-left: 10%;
}                    
  .landing { flex-direction: column; } 
     .nav-links li { opacity: 0; } 
     .nav-links li a { font-size: 20px; } 
     
     .nav-links li:nth-child(1) { transition: all 0.5s ease 0.2s; } 
     .nav-links li:nth-child(2) { transition: all 0.5s ease 0.3s; } 
     .nav-links li:nth-child(3) { transition: all 0.5s ease 0.4s; }            
     .nav-links li:nth-child(4) { transition: all 0.5s ease 0.5s; }            
     .nav-links li:nth-child(5) { transition: all 0.5s ease 0.6s; }
     .nav-links li:nth-child(6) { transition: all 0.5s ease 0.7s; }
     .nav-links li:nth-child(7) { transition: all 0.5s ease 0.8s; }            
     li.fade { opacity: 1; }

.content {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    padding: 8vh 1vw 8vh;
    /* margin:8vh 7px; */
    display:flex;
    flex-wrap:wrap;
    /* align-content: flex-start; */
    justify-content: center;
    /* flex-flow: wrap; */
    background: rgb(102 102 180 /.2);
}
.text,.text2{
  width: 95%;
  margin: 1px 0;
}
.group_items_body{
  justify-content: center;
}


/* ----------------стоимость услуг------------ */
.order_price{
  width:95.6vw;
  min-height:100px;
  /* background-color:pink; */
  margin:5px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }
  .op_head{
  display:flex;
  align-items:center;
  width:100%;
  min-height:30px;
  /* background-color:#ffe55d; */
  }
  
  .oph_items{
  display:flex;
  align-items:center;
  width:80%;
  min-height:30px;
  /* background-color:#6fff46; */
  padding: 4px 7px;
  }
  .oph_time{
  display:flex;
  align-items:center;
  justify-content:center;
  width:20%;
  min-height:30px;
  /* background-color:#ff0000; */
  }
  .op_body{
  display:flex;
  width:100%;
  min-height:80px;
  /* background-color:#ff46d9; */
  }				
          
  .ophb_price{
  padding:4px 0 4px 20px;
  width:60%;
  min-height: 70px;
  /* background-color:#925dff; */
  }			
.inpprice{
  width:95%;
  padding:3px;
  margin-top:4px;
  border-radius:3px;
}				
.ophb_give{
  width:40%;
  display:flex;
  align-items:center;
  justify-content:center;
  /* background-color: rosybrown; */
}
.ophb_give_button{
  width: 100%;
  cursor: pointer;
  margin-top: 15px;
  height: 35px;
}
                          /* стоимость услуг */

                          /* предложение цены услуг */
.price{
  display: flex;
  flex-direction: row;
  /* align-items: center; */
  width:95.6vw;
  min-height:70px;
  background-color: rgb(246, 246, 246);
  border:1px solid grey;
  margin:5px 0;
  padding: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }
.price_head{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 45%;
  margin-right: 5px;
}
.price_window {
  display: flex;
  justify-content: center;
  padding: 3px 5px;
  margin: -5px 0 0 -5px;
  font-size: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  min-width: 40%;
  background-color: rgb(126, 195, 223,0.3);
}
.price_body{
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* background-color: rgb(204, 0, 255); */
}
.name_of_company {
  cursor: pointer;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  padding: 0 5px;
  font-size: 18px;
  width: 100%;
  /* background-color: burlywood; */
}

.call_button {
  display: flex;
  padding: 3px 5px;
  /* width: 30%; */
  font-size: 22px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  /* border: 1px solid rgb(10, 248, 10); */
  border-radius: 4px;
  /* background-color: rgb(253, 216, 4); */
}
.well_done {
  padding: 3px 5px;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  /* background-color: rgb(202, 222, 135); */
}


/* предложение цены услуг */
    

    
/* --------------------закрытый ордер-------------------- */

.ord_done {
  display: flex;
  flex-direction: column;
  width:95.6vw;
  min-height:100px;
  /* width: 320px; */
  min-height:100px;
  padding:7px;
  margin:2px 5px;
  border:1px solid grey;
  background-color: rgb(246, 246, 246);
}
.ord_done_head {
display: flex;
align-items: center;
}
.ordditims {
width: 74%;
}
.butblock {
display: flex;
flex-direction: column;
width: 26%;
align-items: center;
/* background-color: rgb(245, 242, 201); */
}
.repbut{
width: 90%;
padding: 3px 0;
/* background-color: #2ecc71; */
font-size: 10px;
color: #2ecc71;
border: 2px solid #2ecc71;
border-radius: 3px;
margin-bottom: 5px;
text-align: center;
}
.dellbut{
width: 90%;
padding: 3px 0;
/* background-color: #2ecc71; */
font-size: 10px;
color: #e43939;
border: 2px solid #e43939;
border-radius: 3px;
text-align: center;
}
.ord_done_body {
display: flex;
flex-direction: column;
}
.odprice {
display: flex;
align-items: center;
}
.odppice {
display: flex;
justify-content: center;
min-width: 25%;
font-family: 'Roboto', sans-serif;
font-weight: 700;
font-size: 30px;
background-color: rgb(126, 195, 223,0.3);
margin-left: -7px;
padding: 0 5px;
}
.orddnofc {
max-width: 75%;
padding: 0 10px;
font-size: 20px;
font-family: 'Roboto', sans-serif;
font-weight: 500;
}
.callbutton {
margin: 7px auto;
width: 80%;
background: #2ecc71;
color: #ffffff;
border: 2px solid #2ecc71;
border-radius: 3px;
padding: 5px auto;
text-align: center ;
font-size: 20px;
font-family: 'Roboto', sans-serif;
font-weight: 500;
}
.note {
display: flex;
flex-direction: column;
width: 100%;
/* background-color: darkorange; */
}
.nbutblock{
display: flex;
width: 100%;
margin: 5px auto;
}
.note_button.v{
width: 70%;
padding: 3px 0;
/* background-color: #2ecc71; */
font-size: 12px;
color: orange;
border: 2px solid orange;
border-radius: 3px;
text-align: center;
transition: 0.5s;
}
.note_item.v{
width: 100%;
height: 100%;
display: block;
transition: 5s;
}
.note_item_area{
width: 100%;
padding: 15px;
transition: 5s;
}

.addstbutt.v{
display: block;
width: 30%;
bottom: 0;
right: 0;
font-size: 12px;
color: white;
background: orange;
border: 2px solid darkorange;
border-radius: 3px;
padding: 3px 0;
text-align:center;
margin-left: 5px;
transition: 0.5s;
}
.note_item{
  display: none;
  width: 100%;
  height: 0;
  
  }
  .addstbutt{
    display: none;
  width: 30%;
  bottom: 0;
  right: 0;
  font-size: 12px;
  color: white;
  background: orange;
  border: 2px solid darkorange;
  border-radius: 3px;
  padding: 3px 0;
  text-align:center;
  margin-left: 5px;
  transition: 0.5s;
  }
  .note_button{
    width: 100%;
    padding: 3px 0;
    /* background-color: #2ecc71; */
    font-size: 12px;
    color: orange;
    border: 2px solid orange;
    border-radius: 3px;
    text-align: center;
    transition: 0.5s;
    }
/* --------------------закрытый ордер-------------------- */
/* ---------new order--------- */

.box_title {
  font-size: 20px;
  margin: 8px 0 15px;
}
.box_add_item_blockk {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* border: 1px solid; */
  /* flex: 1 1 auto; */
  
  /* background-color: burlywood; */
}
.form_inp_info {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  /* border: 1px solid ; */
  margin-bottom: 15px;
}

.form_input {
  display: flex;
  justify-content: center;
  width: 90%;
  /* border: 1px solid ; */

}
.control_label {
  text-align: center;
}
.hand_input {
  display: flex;
  justify-content: center;
  width: 100%;
   /* border: 1px solid ; */
}
.hand_input-item {
  display: flex;
  flex-direction: column;
  width: 90%;
   /* border: 1px solid ; */
}








}