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 (min-width: 1200px) {
  .container {
    max-width: 1250px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1199.5px) {
  .container {
    max-width: 100%;
    width: 100%;
  }
}
/*btn*/
.btn {
  position: relative;
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  border: 0;
  padding: 14px 17px;
  min-height: 44px;
  font-family: 'Dopis', sans-serif;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 0;
}
.btn:focus {
  color: #fff;
  background-color: #00657b;
  border-color: #00657b;
}
.btn:hover {
  color: #fff;
  background-color: #00657b;
  border-color: #00657b;
}
.btn.btn-accent {
  color: #fff;
  border: 2px solid #00657b;
  background-color: #00657b;
}
.btn.btn-accent:hover {
  color: #fff;
  background-color: #7badb8;
  border-color: #7badb8;
}

.btn_blue {
  background: rgb(229 0 0);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(229 0 0)),
    to(rgba(199 0 0))
  );
  background: -o-linear-gradient(left, rgba(229 0 0) 0%, rgba(199 0 0) 100%);
  background: linear-gradient(to right, rgb(229 0 0) 0%, rgb(199 0 0) 100%);
  color: white;
  font-family: 'NotoSans', sans-serif;
  font-weight: 500;
  line-height: 1;
}
.btn_blue:focus {
  -webkit-box-shadow: 0 10px 10px rgba(199 0 0);
  box-shadow: 0 10px 10px rgb(199 0 0);
}
.btn_blue:hover {
  background: rgb(199 0 0);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(199 0 0)),
    to(rgb(143, 0, 0))
  );
  background: -o-linear-gradient(left, rgba(199 0 0) 0%, rgba(143, 0, 0) 100%);
  background: linear-gradient(to right, rgba(199 0 0) 0%, rgb(143, 0, 0) 100%);
  color: white;
}
.btn_blue2 {
  position: relative;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  color: white;
  font-family: 'NotoSans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}
.btn_blue2::after {
  display: inline-block;
  position: absolute;
  content: '';
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url('../img/btn_blue2_bg.png') no-repeat 0 center / 200% 100%;
  left: 0;
  top: 0;
}
.btn_blue2:hover::after {
  background-position: 100% center;
}
.btn_blue2::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_blue2 span {
  color: white;
  font-family: 'NotoSans', sans-serif;
  font-weight: 400;
  line-height: 1;
}
.btn_blue2 span,
.btn_blue2 img,
.btn_blue2 svg {
  display: inline-block;
  position: relative;
  z-index: 3;
}
@media (pointer: coarse) {
  .btn_blue:hover {
    background: rgb(0, 102, 173);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(0, 102, 173, 1)),
      to(rgba(0, 149, 219, 1))
    );
    background: -o-linear-gradient(
      left,
      rgba(0, 102, 173, 1) 0%,
      rgba(0, 149, 219, 1) 100%
    );
    background: linear-gradient(
      to right,
      rgba(0, 102, 173, 1) 0%,
      rgba(0, 149, 219, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0066ad', endColorstr='#0095db',GradientType=1 );
    color: #fff;
  }
}
.btn_grey-300 {
  background: rgb(200, 210, 217);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(200, 210, 217, 1)),
    to(rgba(200, 210, 217, 1))
  );
  background: -o-linear-gradient(
    left,
    rgba(200, 210, 217, 1) 0%,
    rgba(200, 210, 217, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(200, 210, 217, 1) 0%,
    rgba(200, 210, 217, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c8d2d9', endColorstr='#c8d2d9',GradientType=1 );
  color: white;
  font-family: 'NotoSans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  -webkit-box-shadow: 0 10px 10px rgba(200, 210, 217, 0.15);
  box-shadow: 0 10px 10px rgba(200, 210, 217, 0.15);
}
.btn_grey-300:focus {
  -webkit-box-shadow: 0 10px 10px rgba(200, 210, 217, 0.15);
  box-shadow: 0 10px 10px rgba(200, 210, 217, 0.15);
}
.btn_grey-300:hover {
  background: #a6b5bf;
  color: white;
}
@media (pointer: coarse) {
  .btn_grey-300:hover {
    background: rgb(200, 210, 217);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(200, 210, 217, 1)),
      to(rgba(200, 210, 217, 1))
    );
    background: -o-linear-gradient(
      left,
      rgba(200, 210, 217, 1) 0%,
      rgba(200, 210, 217, 1) 100%
    );
    background: linear-gradient(
      to right,
      rgba(200, 210, 217, 1) 0%,
      rgba(200, 210, 217, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c8d2d9', endColorstr='#c8d2d9',GradientType=1 );
    color: white;
  }
}
.btn_grey {
  background-color: #737272;
  color: white;
  font-family: 'NotoSans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  -webkit-box-shadow: 0 10px 10px rgba(115, 114, 114, 0.15);
  box-shadow: 0 10px 10px rgba(115, 114, 114, 0.15);
}
.btn_grey:focus {
  -webkit-box-shadow: 0 10px 10px rgba(115, 114, 114, 0.15);
  box-shadow: 0 10px 10px rgba(115, 114, 114, 0.15);
}
.btn_grey:hover {
  background: #999898;
  color: white;
}
@media (pointer: coarse) {
  .btn_grey:hover {
    background: #737272;
    color: white;
  }
}

.btn_grey-transparent {
  background-color: transparent;
  color: #6c7176;
  font-family: 'NotoSans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  border: 1.6px solid #737272;
  -webkit-box-shadow: 0 10px 10px rgba(115, 114, 114, 0.15);
  box-shadow: 0 10px 10px rgba(115, 114, 114, 0.15);
}
.btn_grey-transparent:focus {
  -webkit-box-shadow: 0 10px 10px rgba(115, 114, 114, 0.15);
  box-shadow: 0 10px 10px rgba(115, 114, 114, 0.15);
}
.btn_grey-transparent:hover {
  background-color: #737272;
  color: white;
}
@media (pointer: coarse) {
  .btn_grey-transparent:hover {
    background-color: transparent;
    color: #6c7176;
  }
}
/*placeholder*/
::-webkit-input-placeholder {
}
::-moz-placeholder {
}
:-moz-placeholder {
}
:-ms-input-placeholder {
}
