/**
  RESET CSS
 */

html {
  box-sizing: border-box;
  font-size: 14px;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}

*, *:before, *:after {
  box-sizing: content-box;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.clearfix {
  overflow: auto;
}

/*===================================================*/

.browsers-info {
  background: #f5f6fa;
  min-height: 100vh;
}

.browsers-info__main {
  position: relative;
  z-index: 10;
  padding-top: 70px;
}

.browsers-info__content {
  width: 500px;
  margin: 0 auto 50px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.browsers-info__top {
  padding: 30px;
  border-bottom: 1px solid #e9e9e9;
  text-align: center;
}

.browsers-info__bottom {
  width: 460px;
  padding: 30px;
}

.browsers-info__btn {
  text-align: center;
  margin-top: 20px;
}

.browsers-info__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1050px;
  height: 340px;
  background: #4674fe;
  z-index: -1;
}

.browsers-info__header {
  text-align: center;
}

.browsers-info__logo {
  margin: 10px 0 30px;
}

.browsers-info .browsers-info__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
}

.browsers-info__subtitle {
  width: 100%;
  margin: 8px 0 10px;
  text-align: center;
  color: rgba(51, 57, 67, 0.52);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

.browsers-info__icons {
  display: block;
  width: 470px;
  padding-left: 30px;
}

.browsers-info__icon {
  padding-left: 48px;
  width: 48px;
  height: 48px;
}

.browsers-info__item {
  float: left;
  padding: 10px;
  width: 150px;
  margin: 0 8px;
}

.browsers-info__item.second {
  padding-left: 30px;
  padding-right: 30px;
}

.browsers-info__icon-label {
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  font-size: 1.1rem;
}

.browsers-info__icon-label--version {
  color: rgba(0, 0, 0, 0.54);
  font-size: 0.9rem;
  font-weight: 400;
}

.browsers-info__heading {
  margin: 0 0 10px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.33;
}

.browsers-info__heading--ie {
  margin: 15px 0 0 0;
}


/**
 PURE CSS MATERIAL BUTTON
 */


.pure-material-button-contained {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  padding: 0 16px;
  min-width: 64px;
  height: 36px;
  vertical-align: middle;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #1256d5;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
  text-decoration: none;
}

.pure-material-button-contained::-moz-focus-inner {
  border: none;
}

/* Overlay */
.pure-material-button-contained::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 0.2s;
}

/* Ripple */
.pure-material-button-contained::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  padding: 50%;
  width: 32px; /* Safari */
  height: 32px; /* Safari */
  background-color: #ffffff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.pure-material-button-contained:hover,
.pure-material-button-contained:focus {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.pure-material-button-contained:hover::before {
  opacity: 0.08;
}

.pure-material-button-contained:focus::before {
  opacity: 0.24;
}

.pure-material-button-contained:hover:focus::before {
  opacity: 0.3;
}

/* Active */
.pure-material-button-contained:active {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.pure-material-button-contained:active::after {
  opacity: 0.32;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0s;
}

/* Disabled */
.pure-material-button-contained:disabled {
  color: rgba(0,0,0,0.38);
  background-color: rgba(0,0,0,0.12);
  box-shadow: none;
  cursor: initial;
}

.pure-material-button-contained:disabled::before {
  opacity: 0;
}

.pure-material-button-contained:disabled::after {
  opacity: 0;
}
