body {
  font-family: 'din', arial, sans-serif;
}
body #header-bar {
  background-color: #d20000;
}
body #header-bar h1 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 24px;
  line-height: 75px;
}
body #selects {
  background-color: #dedede;
  padding: 40px 0;
}
@media (max-width: 991px) {
  body #selects {
    padding-top: 0;
  }
}
body #selects p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #484846;
}
body #selects label {
  width: 100%;
  position: relative;
}
body #selects label i {
  position: absolute;
  right: 17px;
  bottom: 16px;
  font-size: 22px;
  color: #797676;
  cursor: pointer;
}
@media (max-width: 991px) {
  body #selects label {
    margin-top: 40px;
  }
}
body #selects label input,
body #selects label button {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 17px 20px;
  width: 100%;
  border: none;
  outline: none;
}
body #selects label button {
  text-align: left;
  border-radius: 0;
}
body #selects label button .flag {
  margin-right: 15px;
  width: 54px;
  height: 26px;
  border: 1px solid #cacaca;
}
body #selects label button .arrow {
  float: right;
  margin-top: 9.5px;
  transition: all 0.2s ease;
}
body #selects label button.country-showed .arrow {
  transform: rotate(180deg);
}
body #countries {
  background-color: #f2f2f2;
  padding-top: 40px;
  display: none;
}
body #countries .country {
  padding-bottom: 40px;
  cursor: pointer;
}
body #countries .country.disabled {
  opacity: 0.3;
  cursor: auto;
}
body #countries .country:hover span,
body #countries .country.active span {
  color: #393940;
}
body #countries .country span {
  color: #999;
}
body #countries .country span img {
  margin-right: 15px;
  width: 54px;
  height: 26px;
  border: 1px solid #cacaca;
}
body #results {
  margin-top: 20px;
}
body #results h1 {
  text-align: center;
  font-size: 22px;
}
body #results .document .item {
  padding: 30px 0;
}
body #results .document .item .name {
  font-size: 16px;
  line-height: 42px;
  color: #393939;
}
body #results .document .item .name::before {
  content: ">";
  color: #f00;
  font-weight: bold;
  padding-right: 5px;
}
body #results .document .item .version {
  font-size: 16px;
  line-height: 42px;
  text-align: center;
}
@media (max-width: 991px) {
  body #results .document .item .version {
    text-align: left;
    margin-top: 20px;
  }
}
body #results .document .item .lang .cont {
  display: block;
  margin: 0 auto;
  padding-left: 40px;
  line-height: 42px;
}
@media (max-width: 991px) {
  body #results .document .item .lang .cont {
    margin-right: 0;
    margin-top: 20px;
    text-align: right;
  }
}
body #results .document .item .lang .cont img {
  margin-right: 10px;
  width: 54px;
  border: 1px solid #cacaca;
}
body #results .document .item .if-previous {
  font-size: 12px;
  color: #bf0005;
  line-height: 45px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  padding-right: 30px;
  text-align: right;
  display: none;
}
@media (max-width: 1199px) {
  body #results .document .item .if-previous {
    padding-right: 10px;
  }
}
@media (max-width: 991px) {
  body #results .document .item .if-previous {
    float: right;
    padding: 0;
    padding-right: 15px;
    margin-top: 30px;
  }
}
@media (max-width: 450px) {
  body #results .document .item .if-previous {
    font-size: 10px;
  }
}
body #results .document .item .if-previous.has-previous {
  display: block;
}
body #results .document .item .if-previous.has-previous::after {
  content: "";
  display: inline-block;
  background: url("img/arrow-down-red.png") center center no-repeat;
  height: 10px;
  width: 30px;
}
body #results .document .item .if-previous.prev-showed::after {
  transform: rotate(180deg);
}
body #results .document .item .download {
  padding-right: 0;
  float: right;
}
@media (max-width: 991px) {
  body #results .document .item .download {
    float: left;
  }
}
body #results .document .item .download button {
  background-color: #d20000;
  color: #fff;
  line-height: 45px;
  padding: 0 35px;
  border: none;
  outline: none;
  text-transform: uppercase;
}
body #results .document .item .download button a {
  color: #fff;
  text-decoration: none;
}
body #results .document .item .download button a:hover {
  color: #fff;
}
@media (max-width: 1199px) {
  body #results .document .item .download button {
    padding: 0 30px;
  }
}
@media (max-width: 991px) {
  body #results .document .item .download button {
    margin-top: 20px;
    float: left;
  }
}
@media (max-width: 450px) {
  body #results .document .item .download button {
    font-size: 12px;
  }
}
body #results .document .prev {
  display: none;
}
body #results .document .prev .item {
  margin-top: -30px;
}
body #results .loader img {
  display: block;
  margin: 0 auto;
  height: 70px;
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1500ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 1500ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 1500ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
