* {
  box-sizing: border-box;
}
body,
html {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #181818;
  overflow-x: hidden;
}
p {
  margin: 0;
}
/**
 * Displays
 */
.hidden {
  display: none;
}
.displayBlock {
  display: block;
}
.displayInlineBlock {
  display: inline-block;
}
.displayInline {
  display: inline;
}
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
/**
 * Selection
 */
.disableSelection {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/**
 * Floats
 */
.left {
  float: left;
}
.right {
  float: right;
}
.clearfix:after,
.clearfix:before {
  content: ' ';
  display: table;
}
.clearfix:after {
  clear: both;
}
/**
 * Sizes
 */
.fullWidth {
  display: block;
  width: 100%;
}
/**
 * Common button
 */
.commonButton {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: none;
  background-color: #d43d5a;
  color: #ffffff;
  padding: 8px 8px;
  border-radius: 2px;
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -khtml-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.commonButton[disabled] {
  background-color: #8f8f8f;
  color: #c1c1c1;
}
.commonButton[disabled]:hover {
  cursor: not-allowed;
  background-color: #8f8f8f;
  color: #c1c1c1;
}
.commonButton:hover {
  cursor: pointer;
  background-color: #b32640;
}
.commonButton:active,
.commonButton:focus {
  outline: none;
}
.commonButton.progress {
  position: relative;
}
.commonButton.progress:after {
  position: absolute;
  content: ' ';
  display: block;
  width: 15px;
  height: 16px;
  top: 10px;
  right: 14px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top: 1px solid transparent;
  animation-name: buttonProgressRotate;
  animation-duration: 0.75s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.commonButton.white {
  background-color: #ffffff;
  border: 1px solid #919191;
  color: #3f3f3f;
}
.commonButton.white:hover {
  color: #ffffff;
  background-color: #8f8f8f;
  border-color: #8f8f8f;
}
.commonButton.white:hover.progress:after {
  border: 2px solid #ffffff;
  border-top: 1px solid transparent;
}
.commonButton.white.progress:after {
  border: 2px solid #3f3f3f;
  border-top: 1px solid transparent;
}
.commonButton.gray {
  background-color: #919191;
  border: 1px solid #595959;
  color: #ffffff;
}
.commonButton.gray:hover {
  background-color: #747474;
  border-color: #747474;
}
.commonButton.transparent {
  background-color: transparent;
  border: 1px solid #919191;
  color: #3f3f3f;
}
.commonButton.transparent.progress:after {
  border: 2px solid #3f3f3f;
  border-top: 1px solid transparent;
}
.commonButton.hoverWarning:hover {
  background-color: #b32640;
  border: 1px solid #b32640;
  color: #ffffff;
}
/**
 * input box iOS fix
 */
input[type=text],
input[type=password],
textarea {
  -webkit-appearance: none;
  border: 1px solid #bebebe;
  outline: none;
}
