@import url(https://fonts.googleapis.com/css?family=Roboto:400);

.text-wrapper {
  position: absolute;
  width: 100vw;
  bottom: 20px;
  text-align: center;
}
.text-wrapper p {
  font-size: 15px;
  color: #555;
}
.text-wrapper p a {
  text-decoration: none;
  color: #03a9f4;
}

.main-wrapper {
  display: table;
  margin: 10px auto 0;
}

@media (min-width:768px) {
    .main-wrapper {
        margin: 90px auto 0;
    }
}

@media (min-width:992px) {
    .main-wrapper {
        margin: 90px auto 0;
    }
}

@media (min-width:1200px) {
    .main-wrapper {
        margin: 190px auto 0;
    }
}

.main-wrapper .buttons-wrapper {
  display: table-cell;
  vertical-align: middle;
  height: 59px;
  width: 320px;
  border-radius: 7px;
  line-height: 25px;
  background-color: black;
  border: 2px solid black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.55);
}

.button-text {
  color:#fff;
  font-size:0.8em;
}

.main-wrapper .buttons-wrapper:after {
  content: "";
  display: block;
  clear: both;
}
.main-wrapper .buttons-wrapper .button {
  position: relative;
  z-index: 1;
  width:24.5%;
  float: left;
  padding: 10px 9px 5px 9px;
  background-image: linear-gradient(#333, #222);
  text-align: center;
  margin: 0 1px;
  border-radius: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.175s ease;
}
.main-wrapper .buttons-wrapper .button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 0;
}
.main-wrapper .buttons-wrapper .button:first-child.selected:before {
  display: none;
}
.main-wrapper .buttons-wrapper .button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-right: 0;
}
.main-wrapper .buttons-wrapper .button:last-child.selected:after {
  display: none;
}
.main-wrapper .buttons-wrapper .button:hover {
  z-index: 2;
  background-image: linear-gradient(#373737, #262626);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.5);
}
.main-wrapper .buttons-wrapper .button .fa {
  color: #424242;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
  font-size: 28px;
  width: 32px;
}
.main-wrapper .buttons-wrapper .button.selected {
  z-index: 3;
  cursor: default;
  background-image: linear-gradient(#202020, #151515);
  border-top-color: rgba(0, 0, 0, 0);
  border-left-color: rgba(0, 0, 0, 0.55);
  border-right-color: rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(255, 255, 255, 0.06);
}
.main-wrapper .buttons-wrapper .button.selected:after, .main-wrapper .buttons-wrapper .button.selected:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(2, 165, 238, 0.4), rgba(0, 0, 0, 0.25));
}
.main-wrapper .buttons-wrapper .button.selected:before {
  left: -4px;
}
.main-wrapper .buttons-wrapper .button.selected:after {
  right: -4px;
}
.main-wrapper .buttons-wrapper .button.selected .fa {
  color: white;
  text-shadow: 0 0 10px rgba(2, 165, 238, 0.75);
}
.main-wrapper .buttons-wrapper .button.selected .fa:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0));
}