label {
  color: #ffffff;
  font-size: 14px;
}
.button {
  padding: 10px;
  color: #595959;
  background-color: #ffffff;
  font-size: 16px;
  border: 1px solid #919191;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
input[type=reset].button {
  background-color: transparent;
}
.checkboxHolder {
  white-space: normal;
}
.checkboxHolder::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #919191;
  background-color: #ffffff;
  vertical-align: middle;
  pointer-events: none;
}
.checkboxHolder > input[type="checkbox"] {
  position: relative;
  width: 17px;
  height: 17px;
  left: -20px;
  vertical-align: middle;
  outline: none;
  visibility: hidden;
}
.checkboxHolder > input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  left: -41px;
  padding-left: 28px;
  vertical-align: middle;
  /*width: 85%;*/
}
.checkboxHolder > input[type="checkbox"] + label:after {
  -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;
  font-family: FontAwesome;
  content: '\f00c';
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: -1px;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 19px;
  transform: rotate(-45deg) scale(0, 0);
}
.checkboxHolder > input[type="checkbox"]:checked + label:after {
  opacity: 1;
  color: #b32640;
  display: inline-block;
  transform: rotate(0deg) scale(1, 1);
}
.checkboxHolder.big::before {
  width: 25px;
  height: 25px;
}
.checkboxHolder.big > input[type="checkbox"] {
  width: 26px;
  height: 26px;
}
.checkboxHolder.big > input[type="checkbox"] + label {
  left: -54px;
  padding-top: 4px;
  vertical-align: top;
}
.checkboxHolder.big > input[type="checkbox"] + label:after {
  left: -4px;
  width: 25px;
  height: 25px;
  font-size: 20px;
  line-height: 27px;
}
.checkboxHolder.big > input[type="checkbox"]:checked + label {
  background-position: top 5px left;
}
.checkboxHolder.gray::before {
  background-color: #ededed;
  border-color: #ededed;
}
.radioHolder > input[type="radio"] {
  position: relative;
  width: 27px;
  height: 27px;
  left: 0;
  vertical-align: middle;
  outline: none;
  visibility: hidden;
}
@media (max-width: 480px) {
  .radioHolder > input[type="radio"] {
    margin-bottom: 14px;
  }
  .radioHolder > input[type="radio"]:nth-last-child(1) {
    margin-bottom: 0;
  }
}
.radioHolder > input[type="radio"] + label {
  position: relative;
  display: inline-block;
  left: -31px;
  padding-left: 37px;
  vertical-align: middle;
  line-height: 27px;
}
.radioHolder > input[type="radio"] + label:after,
.radioHolder > input[type="radio"] + label:before {
  content: ' ';
  display: block;
  position: absolute;
  border-radius: 50%;
}
.radioHolder > input[type="radio"] + label:after {
  width: 27px;
  height: 27px;
  top: 0;
  left: 0;
  background-color: #ededed;
  box-shadow: inset 0 0 0 1px #c1c1c1;
}
.radioHolder > input[type="radio"]:checked + label:before {
  background-color: #b32640;
  width: 17px;
  height: 17px;
  top: 5px;
  left: 5px;
  z-index: 10;
  animation: radioDotAnimationOnCheck 0.2s;
}
.selectHolder {
  position: relative;
  display: inline-block;
  border: 1px solid #bebebe;
  overflow: hidden;
}
.selectHolder select {
  padding: 10px;
  color: #717171;
  background-color: #ffffff;
  font-size: 14px;
  border: 0;
  outline: none;
  white-space: nowrap;
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .selectHolder select {
    padding: 11px 14px 11px 14px;
  }
}
.selectHolder.fullWidth.withDelete {
  width: 86%;
  vertical-align: top;
}
.selectHolder.fullWidth select {
  display: block;
  width: 100%;
}
.selectHolder:after {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -20px;
  display: block;
  width: 30px;
  height: 40px;
  background: #ffffff url(../../images/common/inputs/selectAngleDown.png) no-repeat center center;
  pointer-events: none;
}
.selectHolder.inline select {
  display: inline-block;
}
button.delete[data-for] {
  width: 13%;
  padding: 8px 0 9px 0;
  float: right;
  text-align: center;
  vertical-align: top;
}
button.delete[data-for]:hover {
  color: #ffffff;
  background-color: #b32640;
  border-color: #b32640;
}
.sliderHolder > label {
  display: block;
  margin-bottom: 15px;
}
.sliderHolder .ui-slider-horizontal {
  height: 6px !important;
  border: none !important;
  border-radius: 0 !important;
  white-space: nowrap !important;
}
.sliderHolder .ui-slider-handle {
  width: 25px !important;
  height: 25px !important;
  top: -10px !important;
  background-color: #595959 !important;
  border-radius: 25px !important;
  border: none !important;
  outline: none !important;
}
.sliderHolder .ui-slider .regionOutside,
.sliderHolder .ui-slider .regionInside {
  position: relative;
  display: inline-block;
  height: 6px;
  vertical-align: top;
}
.sliderHolder .ui-slider .regionInside {
  background-color: #d43d5a;
}
.dropdownMenu {
  position: relative;
  min-width: 150px;
  background-color: #ffffff;
  border: 1px solid #c1c1c1;
}
.dropdownMenu:hover {
  cursor: pointer;
}
.dropdownMenu .current {
  padding: 8px 0 8px 12px;
  width: 88%;
}
.dropdownMenu .opener {
  display: block;
  font-family: FontAwesome;
  content: '\f107';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  z-index: 200;
  width: 12%;
  text-align: center;
}
.dropdownMenu .opener i {
  -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;
  position: relative;
  top: 7px;
}
.dropdownMenu ul {
  background: #ffffff;
  border: 1px solid #c1c1c1;
  position: absolute;
  margin: 0;
  padding: 0;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  list-style-type: 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;
  transform: scale(0);
  transform-origin: 0 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 100;
  opacity: 0;
}
.dropdownMenu ul li {
  position: relative;
  left: -80%;
  padding: 8px 0 8px 12px;
  width: 88%;
  opacity: 0;
}
.dropdownMenu ul li:hover {
  cursor: pointer;
}
.dropdownMenu.opened .opener i {
  transform: rotate(180deg);
}
.dropdownMenu.opened ul {
  transform: scale(1);
  -ms-transform: scale(1);
  -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;
  opacity: 1;
}
.dropdownMenu.opened ul li {
  -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;
  left: 0;
  opacity: 1;
}
.tabsHolder {
  position: relative;
  display: inline-block;
  text-align: center;
}
.tabsHolder ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-bottom: 1px solid #bebebe;
}
.tabsHolder ul li {
  display: inline-block;
  width: 200px;
  padding: 15px;
  color: #717171;
  font-size: 16px;
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: color 0.9s ease-in-out;
  -moz-transition: color 0.9s ease-in-out;
  -ms-transition: color 0.9s ease-in-out;
  -o-transition: color 0.9s ease-in-out;
  -khtml-transition: color 0.9s ease-in-out;
  transition: color 0.9s ease-in-out;
}
@media (max-width: 1280px) {
  .tabsHolder ul li {
    width: 205px;
  }
}
@media (max-width: 1024px) {
  .tabsHolder ul li {
    width: 130px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .tabsHolder ul li {
    width: 110px;
  }
}
@media (max-width: 480px) {
  .tabsHolder ul li {
    width: 75px;
    padding: 8px;
    font-size: 13px;
  }
}
.tabsHolder ul li:hover {
  color: #d43d5a;
}
.tabsHolder ul li.selected {
  color: #d43d5a;
  font-weight: 700;
}
.tabsHolder .indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 75%;
  height: 3px;
  background-color: #d43d5a;
}
.switchContainer {
  position: relative;
  height: 40px;
  overflow: hidden;
  display: block;
}
.switchContainer input[type=checkbox] {
  display: none;
}
.switchContainer input[type=checkbox]:checked + .inner .indicator {
  left: 50%;
}
.switchContainer input[type=checkbox]:disabled + .inner .indicator {
  display: none;
}
.switchContainer .inner {
  min-width: 200px;
  position: relative;
}
.switchContainer .inner .tabs {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.switchContainer .inner .tabs > div {
  width: 50%;
  display: inline-block;
  height: 40px;
}
.switchContainer .inner .tabs > div.inactiveText {
  background-color: #dfdfdf;
}
.switchContainer .inner .tabs > div.activeText {
  background-color: #c1c1c1;
}
.switchContainer .inner .tabs > div p {
  padding: 10px 0 0 0;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 50;
  pointer-events: none;
}
.switchContainer .inner .indicator {
  width: 50%;
  height: 40px;
  background-color: #b32640;
  position: relative;
  top: -40px;
  left: 0;
  z-index: 20;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -khtml-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.cityHolder .selectHolder:first-of-type {
  margin-bottom: 5px;
}
