
#art-detail-museum, #art-detail-teacher{ 
    display: none;
}
.art-detail-description{
    margin-left: 25px;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.price-title{
    color: #ff1556;
    font-size: 1.1em;    
}

.art-kind{
    display: flex;
    align-items: flex-end;
    text-align: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
    padding-top: 25px;

}


.art-item{
    color: white;
    min-width: 200px;    
    height: 231px;
    border: 1px #ff1556 solid;
    margin-right: 20px;
    background-color: #ff1556;
    text-decoration: none;
    list-style-type: none;

}
.art-price{
    color: #ff1556;
    padding-top: 1em;
    padding-bottom: 0.8em;
}
.art-detail-title{
    color: darkslategrey;
    padding-bottom: 10px;
    font-weight: 700;
}
.art-detail-block{
    border: 1px #279fad solid;
}
.art-detail-painter-zakaz, .art-detail-museum-zakaz, .art-detail-teacher-zakaz{
    background-color: #279fad;
    color: white;
    text-align: center;
    height: 2em;
    line-height: 2em;
    cursor: pointer;
    letter-spacing: 3pt;
}

/*   modal    */

.modal,
.modal-box {
  z-index: 900;
}

.modal-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

.modal {
  display: none; 
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0,0,0);
  background: rgba(0,0,0,.8);
  overflow: auto;
}

.modal-box {
  position: relative;
  width: 80%;
  max-width: 920px;
  margin: 100px auto;
  animation-name: modalbox;
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(0,0,.3,1.6);
}

.modal-header {
  padding: 10px 20px;
  background: #f1f1f1;
  color: #279fad;
}

.modal-header span {
    font-size: 1.2em;
    font-weight: bold;
    background: #f1f1f1;
    color: #279fad;
  }
  
.modal-body {
  background: #f1f1f1;
  padding: 0px 20px;
}

.modal-body input {
    padding: 3px 10px;
    border-color: none;
    width: 100%;
  }
  

/* Close Button */
.x-close-modal {
    text-align: right;
    cursor: pointer;
  }
  
.close-modal, .send-modal{
  text-align: center;
  cursor: pointer;
  width: 100%;
  height: 38px;
  line-height: 1.7em;
  background-color: #279fad;
  color: white;
  border: none; outline: none;
}

/* Animation */
@-webkit-keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

#zakaz-form-sended{
    display: none;
}