h2 {
  text-align: center;
}

.success-block {
  margin: 100px auto;
  width: 50%;
}

.success-block h1 {
  font-size: 26px;
  text-align: center;
  margin-top: 0;
}

.success-block h2 {
  font-size: 18px;
  text-align: center;
  margin-top: 0;
}

.success-block .congrats {
  text-align: center;
  color: #090;
}

.benefits {
  font-family: 'Roboto Condensed';
}

.benefits .benefit {
  width: 22%;
  margin: 5px 1%;
  display: inline-block;
  cursor: default;
  vertical-align: top;
}

.benefits .benefit .name {
  height: 60px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: solid 1px #933;
  color: #933;
  padding: 5px;
  text-transform: uppercase;
  text-align: center;
}

.benefits .benefit .descr {
  margin-top: 5px;
  vertical-align: middle;
  padding: 5px;
  text-align: center;
}

.steps {
  margin-top: 15px;
}

.steps .steps_header {
  text-align: center;
  font-size: 1.4em;
  text-transform: uppercase;
  color: #933;
  font-weight: bold;
  padding: 5px;
}

.steps .steps_subheader {
  text-align: center;
  text-transform: uppercase;
  padding: 5px;
  padding-top: 0;
}

.steps .step {
  margin: 20px 0 10px;
  text-align: center;
  font-family: 'Roboto Condensed';
}

.steps .step h4 {
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 5px;
}

.steps .step h4 .step_num {
  font-weight: bold;
  color: #933;
}

.steps .step p {
  font-size: 16px;
}

.steps .step_action {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #EEE;
}

.steps .step_action .select_btn {
  text-align: center;
}

.steps .step_action .materials_selector {
  position: fixed;
  bottom: -100vh;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  z-index: 200;
  transition: opacity 0.3s ease-out 0.1s;
}

.steps .step_action .materials_selector.visible {
  bottom: 0vh;
  opacity: 1;
}

.steps .step_action .materials_selector.visible .materials_selector_inner {
  bottom: 0vh;
}

.steps .step_action .materials_selector .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #FFF;
  cursor: pointer;
}

.steps .step_action .materials_selector .materials_selector_inner {
  position: fixed;
  bottom: -100vh;
  height: 90vh;
  left: 50%;
  width: 1170px;
  margin-left: -585px;
  overflow-y: scroll;
  background-color: #FFF;
  box-shadow: 0 0 10px #333;
  border: solid 1px #999;
  padding: 0 20px;
  transition: all 0.3s ease-out;
}

.steps .step_action .materials_selector .materials_selector_inner h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.7em;
}

.steps .step_action .materials_selector .materials_selector_inner .filters {
  border: solid 1px #CCC;
  border-radius: 6px;
  margin-bottom: 10px;
  background-color: #FCFCFC;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_head {
  background-color: #F6F6F6;
  padding: 10px;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_head:hover {
  background-color: #EEE;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_head .total_materials {
  width: 65%;
  display: inline-block;
  vertical-align: middle;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_head .total_materials .chevron {
  padding-right: 10px;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_head .total_filters {
  width: 35%;
  display: inline-block;
  text-align: right;
  vertical-align: middle;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_body {
  overflow: hidden;
  padding: 5px;
  border-top: solid 1px #CCC;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_body .filter {
  display: inline-block;
  min-width: 33%;
  vertical-align: top;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_body .filter .filter_header {
  font-weight: bold;
  padding: 5px 10px;
  border-bottom: solid 1px #CCC;
  margin: 5px 10px;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_body .filter .filter_vars {
  margin: 0 10px;
  padding: 0 10px;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_body .filter .filter_vars label {
  font-weight: normal;
  display: block;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_body .filters_actions {
  text-align: right;
}

.steps .step_action .materials_selector .materials_selector_inner .filters .filters_body .filters_actions .btn {
  margin: 5px;
}

.steps .step_action .materials_selector .materials_selector_inner .materials {
  text-align: center;
}

.steps .step_action .materials_selector .materials_selector_inner .materials .material {
  display: inline-block;
  width: 165px;
  margin: 8px;
  margin-bottom: 15px;
  text-align: center;
  vertical-align: top;
}

.steps .step_action .materials_selector .materials_selector_inner .materials .material .material_image {
  border: solid 1px #666;
  width: 100%;
  height: 165px;
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
  margin-bottom: 5px;
  position: relative;
}

.steps .step_action .materials_selector .materials_selector_inner .materials .material .material_image img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-out;
  z-index: 1;
}

.steps .step_action .materials_selector .materials_selector_inner .materials .material .material_image img:hover {
  transform: scale(1.1);
}

.steps .step_action .materials_selector .materials_selector_inner .materials .material .material_image .like {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px;
  background-color: rgba(170, 223, 143, 0.7);
  z-index: 10;
  text-align: center;
  width: 100%;
  font-size: 14px;
  transition: all 0.2s ease-out;
  color: #DDD;
}

.steps .step_action .materials_selector .materials_selector_inner .materials .material .material_image .like span {
  padding-left: 10px;
}

.steps .step_action .materials_selector .materials_selector_inner .materials .material .material_image .like:hover {
  color: #000;
}

.steps .step_action .materials_selector .materials_selector_inner .materials .material .material_name {
  font-size: 13px;
  color: #565;
  font-weight: bold;
  line-height: 1.2;
}

.steps .step_action .materials_selector .materials_selector_inner .materials .material .material_props {
  font-size: 12px;
  margin-top: 3px;
  color: #666;
}

.steps .step_action .materials_selector .materials_selector_inner .materials .material .material_props span {
  padding-left: 5px;
}

.steps .step_action .selected_material {
  margin: 10px auto;
  padding: 10px;
  background-color: #F9F9F9;
  border: solid 1px #DDD;
}

.steps .step_action .selected_material .selected_header {
  font-size: 16px;
  padding-bottom: 5px;
  border-bottom: solid 1px #DDD;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.steps .step_action .selected_material .material_image {
  display: inline-block;
  vertical-align: top;
}

.steps .step_action .selected_material .material_image img {
  width: auto;
  height: 200px;
  border: solid 1px #333;
}

.steps .step_action .selected_material .material_data {
  display: inline-block;
  vertical-align: top;
  margin-left: 20px;
}

.steps .step_action .selected_material .material_data h4 {
  margin-top: 0;
}

.steps .step_action .selected_material .material_data p span {
  font-weight: bold;
  color: #666;
}

.steps .step_action .no_material {
  margin: 20px auto;
  padding: 10px;
  text-align: center;
  font-style: italic;
  background-color: #EEE;
  color: #666;
  max-width: 300px;
}

.steps .step_action .details th {
  vertical-align: middle;
  text-align: center;
  background-color: #F9F9F9;
  font-weight: normal;
}

.steps .step_action .details td {
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
  padding: 2px;
}

.steps .step_action .details td select {
  padding: 4px;
}

.steps .step_action .details .delete_btn {
  margin: 0 10px;
}

.steps .step_action .more {
  text-align: center;
}

.steps .step_action .contacts {
  width: 50%;
  margin: 5px auto;
}

.steps .step_action .contacts textarea {
  height: 120px;
}

.steps .step_action .contacts label.light-label {
  font-weight: normal;
  display: block;
}

.steps .step_action .contacts input[type=radio] {
  margin-right: 10px;
}

.steps .step_action .contacts .message {
  text-align: center;
}

.steps .step_action .contacts .message p {
  padding: 10px;
  font-weight: bold;
}

.responsive-table {
  overflow-y: hidden;
}

@media screen and (max-width: 1199px) {
  .steps .step_action .materials_selector .materials_selector_inner {
    width: 970px;
    margin-left: -485px;
  }
}

@media screen and (max-width: 991px) {
  .steps .step_action .contacts {
    width: 70%;
  }
  .steps .step_action .materials_selector .materials_selector_inner {
    width: 750px;
    margin-left: -375px;
  }
  .steps .step_action .materials_selector .materials_selector_inner .materials .material {
    width: 157px;
  }
  .steps .step_action .materials_selector .materials_selector_inner .materials .material .material_image {
    height: 157px;
  }
}

@media screen and (max-width: 767px) {
  .success-block {
    margin: 20px auto;
    width: 90%;
  }
  .benefits .benefit {
    width: 49%;
    margin: 0;
    vertical-align: middle;
    background-color: #FEE;
    border: solid 1px #FFF;
  }
  .benefits .benefit .name {
    height: auto;
    font-size: 1em;
    border-bottom: 0;
  }
  .benefits .benefit .descr {
    display: none;
  }
  .steps .step_action .selected_material .selected_header {
    font-size: 1em;
    text-align: center;
  }
  .steps .step_action .selected_material .material_image {
    display: block;
    text-align: center;
  }
  .steps .step_action .selected_material .material_image img {
    width: auto;
    height: 150px;
  }
  .steps .step_action .selected_material .material_data {
    display: block;
    margin: 0;
    margin-top: 10px;
    text-align: center;
    font-size: 1em;
  }
  .steps .step_action .selected_material .material_data p {
    display: inline-block;
    margin: 5px;
  }
  .steps .step_action .selected_material .material_data p span {
    display: none;
  }
  .steps .step_action .materials_selector .materials_selector_inner {
    width: 94vw;
    margin-left: -47vw;
    padding: 0 20px;
  }
  .steps .step_action .materials_selector .materials_selector_inner h1 {
    text-align: left;
    text-transform: uppercase;
    font-size: 1.4em;
  }
  .steps .step_action .materials_selector .materials_selector_inner .materials .material {
    width: 110px;
  }
  .steps .step_action .materials_selector .materials_selector_inner .materials .material .material_image {
    height: 110px;
  }
  .steps .step_action .materials_selector .materials_selector_inner .materials .material .material_props {
    display: none;
  }
  .steps .step_action .contacts {
    width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .steps .step_action .contacts {
    width: 100%;
  }
}
