html, body {
    height:100%;
    width:100%;
    margin:0;
    padding:0;

}

.add
{
  width: 80%;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border: 1px dashed grey;
  margin: 10px 0;
}

.add:hover
{
  cursor: pointer;
  background-color: #ff9726;
}

.chec{
    width: 80%;
    height: 20px;
}
.check{
    vertical-align: top;
}

img:hover {
color: #ff9726;
box-shadow: 1px 3px 5px 0px #ff9726;
}
textarea {
	width: 100%;
	height: 30em;
	box-shadow: 1px 3px 5px 0px #85888C;
	padding: 10px 10px 10px 10px;
	
}
#conteyner
{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style-type: none;
    z-index: 10;
}
.pl{
    display: flex;
    justify-content: stretch;
}
.anchored{
  content: "";
  display: block;
  height: 100px; /* высота заголовка */
  margin: -100px 0 0; /* компенсация отступа */
}
.cont
{
    padding: 25px 10px 0px 10px;
}
.td_body{
    width: 40px;
    text-align: center;
}
.td_body_big{
    width: 150px;
    text-align: left;
}
.card
{
    position: relative;
    width: 40vw;
    height: 15vw;
    color: #000000;
    text-align: center;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 1px 3px 5px 0px #85888C;
}
.card2
{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    font-size: 1em;
    font-family:fantasy;
}
.card:hover {
color: #ff9726;
box-shadow: 1px 3px 5px 0px #ff9726;
}
.table {
	width: 100%;
	border: none;
	margin-bottom: 20px;
	padding: 10px 30px 10px 20px;
}
.table thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 8px 10px;
	background: #ff9726;
	font-size: 12px;
}
.table thead tr th:first-child {
	border-radius: 8px 0 0 8px;
}
.table thead tr th:last-child {
	border-radius: 0 8px 8px 0;
}
.table tbody td {
	
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}
.table tbody td img{
    text-align: center;
}
.table tbody tr:nth-child(even){
	background: #c1c1c1;
}
.table tbody tr td:first-child {
	border-radius: 8px 0 0 8px;
}
.table tbody tr td:last-child {
	border-radius: 0 8px 8px 0;
}
.photo{
    margin-left: auto;
    margin-right: auto;
}
.photo tbody td {
    width: 100px;
    height: 100px;
    background: #ebebeb;
}
.photo tbody td img{
    width: 100%;
    height: auto;
}
.modal {
    position: fixed; /* фиксированное положение */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5); /* фон */
    z-index: 1050;
    opacity: 0; /* по умолчанию модальное окно прозрачно */
    -webkit-transition: opacity 200ms ease-in; 
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in; /* анимация перехода */
    pointer-events: none; /* элемент невидим для событий мыши */
    margin: 0;
    padding: 0;
}

.modal:target {
    opacity: 1; /* делаем окно видимым */
	  pointer-events: auto; /* элемент видим для событий мыши */
    overflow-y: auto; /* добавляем прокрутку по y, когда элемент не помещается на страницу */
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    z-index: 100;
    padding: 60px 0;
}
@media (min-width: 576px) {
  .modal-dialog {
      max-width: 900px;
      margin: 30px auto; /* отображение окна по центру */
  }
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}
@media (min-width: 768px) {
  .modal-content {
      -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
      box-shadow: 0 5px 15px rgba(0,0,0,.5);
  }
}

.modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eceeef;
}
.modal-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
}

.close {
    float: right;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    text-decoration: none;
}

.close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .75;
}

.modal-body {
  position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 15px;
    overflow: auto;
}
.plus_img{
    margin: 10px 0px 0px 22px;
    padding: 6px 5px;
    background: #ff9726;
    border-radius: 8px;
    width: 50px;
    height: 50px;
}

