body
{
 background-color: #ffffff;
 font-family: Arial;
 zoom: 150%;
}

.btn_round {
  display: inline-block;
  min-width: 20px;
  min-height: 20px;
  height: 20px;
  width: 20px;
  border-radius: 50%;

  padding: 0;
  text-align: center;
  vertical-align: middle;
  font-weight: bolder;
  
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 1px 1px rgba(0, 0, 1.0, 0.5);
  cursor: pointer;
  border: 1px solid #555555;

  font-size: 12px;



}

@mixin unbuttonize {
  // This removes styles added by default to button elements.
  // For when something should semantically be a button,
  // but isn't buttony in appearance.
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: inherit;
  font: inherit;
  border-radius: 0;
  appearance: none; // Just in case we missed anything.
}



/*  Кнопки */
button {
  background-color: #e7e7e7; /* Green */
  border: 1px solid black;
  color: black;
  padding: 5px 5px;
  margin: 1px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  cursor: pointer;
  min-width: 150px;
  min-height: 20px;
}



button:active {
/* font-size: 1rem; */
 transform: scale(.9);
/* box-shadow: 0 3px 15px -2px; */
}


.button2 {background-color: #008CBA;} /* Blue */
.button3 {background-color: #f44336;} /* Red */ 
.button4 {background-color: #e7e7e7; color: black;} /* Gray */ 
.button5 {background-color: #555555;} /* Black */


.btn_icon{
    width: 10px;
    height: 10px;
    padding-right: 2px;
    padding-left: 2px;
    display: none;
}



.btn_icon_process{
    animation: spin 1.3s linear infinite;
    width: 10px;
    height: 10px;
    padding-right: 2px;
    padding-left: 2px;
    display: inline;
}


@keyframes spin {
    100%{
        transform: rotate(360deg);
    }
}


.btn_icon_ready{

    width: 10px;
    height: 10px;
    padding-right: 2px;
    padding-left: 2px;
    display: inline;
}

.btn_icon_error{

    width: 10px;
    height: 10px;
    padding-right: 2px;
    padding-left: 2px;
    display: inline;
}




.btn_icon_spin2 {
    animation: spin 1.3s ease-in-out infinite;

}




/* Отображение товара*/
.div_tovar_item
{
    font-size: 10px;
    

}
/* Отображение заголовка товара*/
.div_tovar_title 
{
    font-size: 10px;
    background-color: #ffffff;
    color: #222222;
    margin:1px;


}

.div_mp_item
{
  border: 1px solid black;

}

.mp_item_title
{
  background-color: #cccccc;
  color: #000000;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 1px solid black;
  text-align: left;
  width: 100%;
  font-size: 14px;
  padding: 0px 0px 0px 0px;
}

.mp_item_title:hover
{
  background-color: #ffffff;
    
}

.mp_item_title:active
{
 transform: scale(1);

    


}



.mp_item_title_button
{
  background-color: #cccccc;
  color: #000000;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 1px solid black;
  text-align: center;
  font-size: 10px;
}


/*  Кнопки */
.mp_item_button {
  background-color: #e7e7e7; /* Green */
  border: 1px solid black;
  color: black;
  padding: 5px 5px;
  margin: 1px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  cursor: pointer;
  min-width: 150px;
}



.div_item_body_show
{
  background-color: #aa0000;
  color: #000000;
  display: table;
  vertical-align: bottom;
  

}

.div_item_body_hidden
{
  background-color: #ff0000;
  color: #000000;
  display: none;

    opacity:0;
    visibility: hidden;
    transition: all .2s linear;
}


.div_item_body_data
{
  display: table-cell;
  padding: 5px;
  background-color: #eeeeee;
  color: #000000;
  width: 100%;

}


.div_item_body_control_buttons
{
  display: table-cell;

  background-color: #dddddd;
  color: #0000ff;

  border: 3px #dddddd solid;
  vertical-align: top;
  width: 100%;
  height: 100%;
  

}

.list_item_class_style
{
  display: flex;
  justify-content: flex-start;
  flex: 0 100%

}











/* Светлая тема */
.light-theme {
  color: #333333;
  background-color: #eae9f2;
}

.light-theme .page-header {
  background-color: #ffffff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}




/* контекстное меню */
.context-menu {
    border: 4px solid #337AB7;
    background: #BFE2FF;
    width: 180px;
    height: 100px;
    display: inline-flex;
    text-align: center;
    align-items: center;
    margin: 20px;
}
.context-menu-open {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.54);
    background-color: white;
    border-radius: 4px;
    padding: 4px;
}
.context-menu-open ul {
    padding: 0;
    margin: 0;
}
.context-menu-open ul li {
    cursor: pointer;
    list-style: none;
    padding: 10px 12px;
    margin: 0;
    border-bottom: 1px solid #BFE2FF;
}
.context-menu-open ul li:last-child {
    border-bottom: 1px solid transparent;
}
.context-menu-open ul li:hover {
    background-color: #BFE2FF;
}


   fieldset {
      font-size: .5 rem;
      border-style: dashed;
      border-radius: 1em;
      padding: 10px;
    }

    legend {
      margin: 0 left;
      padding: 0 .5em;

    }

.tovar_link
{
  font-weight: bolder;  
  color: #000000;
  cursor: pointer;
  font-size: 10px;
 
}















