.box-modal {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 16px;
  background: #fff;
  -webkit-box-shadow: 0 0 0 6px rgba(153, 153, 153, .3);
  box-shadow: 0 0 0 6px rgba(153, 153, 153, .3);
  border-radius: 6px;
}

.box-modal_close {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 11px;
  line-height: 15px;
  color: #999;
  cursor: pointer;
}

.box-modal_close:hover {
  color: #666;
}

.box-modal_close svg {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.box-modal_close:hover svg line {
  stroke: #ff8400;
}