input::-ms-clear {
 display: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/*modal по вертикали*/
.modal {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}
.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
/*a*/
a:hover {
  text-decoration: none;
  color: inherit;
}
ul li {
  list-style-type: none;
}
a:focus, a:visited, a:link, a:hover, button:focus, button:visited, button:link, button:hover {
  outline: none;
}
*:focus, div:focus, input:focus, input:visited, input:hover, input:link {
  outline: none;
}
textarea:focus, textarea:visited, textarea:hover, textarea:link {
  outline: none;
}
button, label {
  cursor: pointer;
}
/*container*/
@media (max-width: 1200px) { 
  .container {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 1200px) { 
  .container {
    max-width: 1200px;
    width: 100%;
  }
}
@media (min-width: 1430px) { 
  .container {
    max-width: 1430px;
    width: 100%;
  }
}
/*btn*/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn:focus, .btn:active {
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}
.btn_blue {
  position: relative;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
}
.btn_blue::after {
  display: inline-block;
  position: absolute;
  content: '';
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url('../img/btn_blue_bg.png') no-repeat 100% center / 200% 100%;
  left: 0;
  top: 0;
}
.btn_blue:hover::after {
  background-position: 0 center;
}
.btn_blue::before {
  display: block;
  position: absolute;
  content: '';
  z-index: 0;
  width: calc(100% + 20px);
  left: -10px;
  height: calc(100% + 20px);
  top: 0;
  background: url('../img/btn_blue_shadow.png') no-repeat center / 100% 100%;
}
.btn_blue span {
  color: white;
  font-family: 'Open Sans';
  font-weight: 400;
  line-height: 1;
}
.btn_blue span, .btn_blue img, .btn_blue svg {
  display: inline-block;
  position: relative;
  z-index: 3;
}
/*zag*/
.zag {
  font-family: 'Open Sans';
  font-size: 38px;
  font-weight: 700;
  color: #130b04;
  line-height: 1.2em;
  text-transform: uppercase;
}
.zag span {
  display: inline-block;
  color: #d22e1d;
}
/*placeholder*/
::-webkit-input-placeholder {}
::-moz-placeholder      {}
:-moz-placeholder       {}
:-ms-input-placeholder    {}