/* CSS DIRECTORY
  1. Globals
  2. Text formats
  3. Buttons
  4. Form inputs
  5. Main Header
  6. Main Content elements
  7. Main Footer elements
*/

/* ============================= Globals ============================= */

/*
@media (max-width: 599px) {

}
@media (min-width: 600px) {

}
@media (min-width: 900px) {

}
@media (min-width: 1200px) {

}
@media (min-width: 1800px) {

}*/

* {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  background-color: #ffffff;
  line-height: 1.6;
}

.wrapper {
  width: 100%;
  /*min-width: 1024px;*/
  overflow: hidden;
}

.container {
  position: relative;
  max-width: 1170px;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}

h4 {
  margin-bottom: 0.5em;
}

iframe {
  border: none;
}

a {
  color: #b48847;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.row {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
}

.col-1,
.col-2,
.col-3,
.col-4 {
  padding-left: 20px;
  padding-right: 20px;
}

.col-1 {
  width: 25%;
}

.col-2 {
  width: 50%;
}

.col-3 {
  width: 75%;
}

.col-4 {
  width: 100%;
}

@media (max-width: 900px) {
  .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .row {
    display: block;
    margin: 0 auto;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4 {
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
  }
}

/* ============================= Text formats ============================= */

.section-title {
  margin: 0;
  font-weight: 400;
  text-align: center;
  font-size: 36px;
  margin-bottom: 1.6em;
  letter-spacing: 2px;
  line-height: 1.37;
  font-family: "Raleway", sans-serif;
  color: #df6527;
  text-transform: uppercase;
}

h3 {
  font-weight: 700;
}

.list-unstyled {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.list-unstyled>li {
  margin-bottom: 0.47em;
}

/* ============================= Buttons ========================= */

.btn {
  display: inline-block;
  font-size: 14px;
  padding: 12px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 0;
  font-weight: 400;
  background: none;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
}

.btn-default {
  border: 1px solid rgba(235, 111, 49, 0.5);
  color: rgba(235, 111, 49, 0.8);
}

.btn-default:hover {
  border: 1px solid #eb6f31;
  color: #eb6f31;
}

.btn-primary {
  border: 1px solid #dddddd;
  background-color: rgb(255, 255, 255);
  color: #313131;
  box-shadow: 2px 2px 5px rgba(85, 85, 85, 0.08);
  text-transform: initial;
  transition-duration: 0.5s;
}

.btn-primary:hover {
  border-color: #ea9971;
}

.btn-success {
  background-color: #31ab67;
  color: #ffffff;
}

.btn-info {
  background-color: #3493ce;
  color: #ffffff;
}

.btn-warning {
  background-color: #ed893b;
  color: #ffffff;
}

.btn-danger {
  background-color: #db3633;
  color: #ffffff;
}

.btn-link {
  color: #d4a558;
}

/* ============================= Form inputs ============================= */

input,
textarea,
button {
  outline-color: rgba(154, 154, 154, 0.41);
}

.label {
  display: inline-block;
  text-align: right;
  cursor: pointer;
}

.input-text,
.input-select {
  padding: 8px;
  min-width: 250px;
  border: 1px solid #afafaf;
  outline: none;
}

.input-text:focus {
  border: 1px solid #d4a558;
}

.error {
  color: #db3633;
}

.warning {
  color: #ed893b;
}

.success {
  color: #31ab67;
}

.input-text.error {
  border: 1px solid #db3633;
}

.input-text.warning {
  border: 1px solid #ed893b;
}

.input-text.success {
  border: 1px solid #31ab67;
}

.input-radio,
.input-checkbox {
  display: none;
}

.input-radio+label:before,
.input-checkbox+label:before {
  content: "\00a0";
}

.input-radio+label:before {
  border-radius: 12px;
}

.input-radio+label:before,
.input-checkbox+label:before {
  border: 1px solid #d0d0d0;
  display: inline-block;
  height: 16px;
  margin: 0 10px 0 0;
  padding: 2px;
  vertical-align: top;
  width: 16px;
}

.input-radio:checked+label:before {
  content: "\2022";
  border-color: #d4a558;
  color: #d4a558;
  font-size: 30px;
  text-align: center;
  line-height: 14px;
  font-weight: bold;
}

.input-checkbox:checked+label:before {
  background: #ea9971;
  border-color: transparent;
  color: #fff;
  content: "\2713";
  text-align: center;
  font-weight: bold;
  line-height: 16px;
}

/* ============================= Main Header ============================= */

.main-top {
  background-color: #313131;
}

.main-top__contact {
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding: 5px 0px;
  margin: 0;
}

@media (max-width: 599px) {
  .main-top__contact {
    font-size: 10px;
  }
}

.main-top__contact .sep {
  padding: 0 5px;
  color: #eb6f31;
}

.main-header__wrapper {
  position: relative;
  background-color: #df6527;
  height: 65px;
  text-align: center;
}

.main-header__logo {
  float: left;
  height: 100%;
}

.main-header__logo img {
  width: 100%;
  height: 100%;
}

/* For IE 11 */

_:-ms-fullscreen,
:root .main-header__logo img {
  margin-top: -1px;
}

/* For Edge */

@supports (-ms-ime-align: auto) {
  .main-header__logo img {
    margin-top: -1px;
  }
}

/* Header Nav */

.main-header__nav {
  display: inline-block;
}

.main-header__nav .nav {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.main-header__nav a,
.main-header__lang a,
.main-content__subnav a {
  display: block;
  padding: 25px 20px;
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
}

.main-header__nav a:hover,
.main-header__lang a:hover {
  color: #313131;
}

.main-header__nav .current-menu-item,
.current-menu-item a {
  color: #df6527;
  background-color: #ffffff;
}

@media (min-width: 900px) and (max-width: 1200px) {
  .main-content__subnav a {
    padding: 26px 10px;
    font-size: 14px;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .main-header__nav a {
    padding: 26px 10px;
    font-size: 14px;
  }
}

/* Mobile Menu */

.main-header__nav .mobile-icon {
  display: none;
}

.main-header__nav .nav.responsive {
  display: block;
  position: absolute;
  margin-top: 60px;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
}

.main-header__nav .nav.responsive a {
  background-color: #df6527;
  border-top: 2px solid #f3793b;
}

.main-header__nav .nav.responsive li:first-child a {
  border-top: 2px solid #f3793b;
}

.main-header__nav .nav.responsive li:last-child a {
  border-bottom: 2px solid #292625;
}

@media screen and (max-width: 1200px) {

  .main-header__nav .current-menu-item,
  .current-menu-item a {
    color: #313131;
  }

  .main-header__nav {
    float: right;
  }

  .main-header__nav .nav {
    display: none;
  }

  .main-header__nav .mobile-icon {
    float: right;
    display: block;
    font-size: 30px;
    padding: 20px 20px 15px 0;
  }
}

/* ============================= Main Content elements ============================= */

/* Page - services */

.services-box {
  border: 1px solid rgba(223, 101, 39, 0.28);
  padding: 20px 40px;
  color: #313131;
  margin-bottom: 40px;
}

.service-callery .psjp-callery {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service-callery img {
  height: 160px;
}

@media (max-width: 900px) {
  .services-box {
    padding: 20px;
    margin-bottom: 20px;
  }

  .services-box ul {
    padding: 20px;
  }
}

/* Page - company */

.services-box .company-map {
  width: 100%;
  height: 593px;
  border: none;
}

/* Page - payment */

.lhvtable {
  background-color: rgb(238, 238, 238);
  padding: 20px;
  text-align: right;
  font-size: 16px;
}

/* Page - payment */

.services-box.map {
  padding: 40px;
}

@media (max-width: 600px) {
  .services-box.map {
    padding: 20px;
  }
}

/* Page - contact */

.contacts {
  padding-left: 40px;
  padding-bottom: 20px;
}

.contacts ul {
  padding: 0;
}

.contacts ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lhvtable th {
  padding: 10px;
}

/* Product navigation */

.main-content__subnav {
  border-bottom: 1px solid #df6527;
  background-color: #fff;
}

.main-content__subnav .nav {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.main-content__subnav select {
  display: none;
  width: 100%;
  padding: 10px;
}

@media (max-width: 900px) {
  .main-content__subnav {
    padding: 10px 20px;
  }

  .main-content__subnav select {
    display: block;
  }

  .main-content__subnav .nav {
    display: none;
  }
}

.main-content__subnav a {
  color: #313131;
  text-transform: inherit;
}

.main-content__subnav a:hover {
  background-color: #f4f4f4;
}

.main-content__subnav .current-menu-item a {
  /* background-color: #f4f4f4; */
  color: #eb6f31;
}

/* Product filters */

.sidebar-nav__title {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 18px;
  border-bottom: 1px solid #df6527;
}

.sidebar-nav__list {
  list-style: none;
  padding: 0;
}

.sidebar-nav__item {
  margin-bottom: 15px;
  font-size: 16px;
}

.sidebar-nav__item label {
  cursor: pointer;
  user-select: none;
}

.sidebar-nav__footer {
  border-top: 1px solid #df6527;
  padding-top: 20px;
}

@media (max-width: 900px) {
  .sidebar-nav__title {
    margin-top: -15px;
    text-align: center;
  }

  .sidebar-nav__list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    margin: 0;
    flex-wrap: wrap;
  }
}

/* Custom */

.main-content__wrapper {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 74vh;
}

.home .main-content__wrapper,
.single-tv_product .main-content__wrapper {
  padding-top: 0;
}

.no-content {
  text-align: center;
}

@media (max-width: 900px) {
  .main-content__wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* Home page elements */

.hero .section-title {
  font-size: 36px;
  margin-bottom: 0.8em;
  color: #ffffff;
  text-transform: initial;
  font-weight: 800;
}

.hero .hero-info {
  color: #df6527;
  text-align: center;
  background: #ffffff;
  padding: 10px;
  border: 1px solid #545454;
}

@media (max-width: 600px) {
  .hero .container {
    padding-top: 5vh;
  }

  .hero .section-title {
    font-size: 20px;
    margin-bottom: 0.8em;
  }
}

@media (min-width: 600px) {
  .hero .container {
    padding-top: 15vh;
  }
}

@media (max-width: 900px) {
  .hero-nav {
    margin-top: 60px;
  }

  .hero-nav .nav {
    flex-wrap: wrap;
  }

  .hero-nav .nav a {
    font-size: 12px;
    padding-top: 130px;
  }

  .hero-nav .nav__item {
    width: 130px;
    height: 165px;
    margin: 0 auto 20px auto;
  }

  .hero-nav .nav__item::before {
    width: 80px;
    height: 80px;
    margin-left: -40px;
  }
}

@media (min-width: 900px) {
  .hero-nav {
    margin-top: 100px;
  }

  .hero-nav .nav a {
    font-size: 18px;
    padding-top: 170px;
  }

  .hero-nav .nav__item {
    width: 200px;
    height: 220px;
  }

  .hero-nav .nav__item::before {
    width: 120px;
    height: 120px;
    margin-left: -58px;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .hero .container {
    padding-top: 10vh;
  }

  .hero .section-title {
    font-size: 28px;
    margin-bottom: 0.8em;
  }
}

.hero {
  min-height: 90vh;
  margin-bottom: 80px;
  background: url(images/hero_bg.jpg) 50% 50% no-repeat;
  background-size: cover;
  position: relative;
  background-color: rgb(49, 49, 49);
  background-blend-mode: overlay;
}

.hero-nav .nav {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.hero-nav .nav__item {
  position: relative;
  padding: 2px;
  background-color: #313131;
  border: 1px solid #eb6f31;
}

.hero-nav .nav__item::before {
  position: absolute;
  left: 50%;
  top: 34px;
  content: "\00ad";
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-nav .item-1::before {
  background-image: url("icons/air-air.png");
}

.hero-nav .item-2::before {
  background-image: url("icons/air-water.png");
}

.hero-nav .item-3::before {
  background-image: url("icons/earth.png");
}

.hero-nav .item-4::before {
  background-image: url("icons/air.png");
}

.hero-nav .item-5::before {
  background-image: url("icons/repair.png");
}

.hero-nav .nav a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

.hero-nav .nav a:hover {
  text-decoration: none;
  color: #eb6f31;
}

/* Hero scroll arrow */

.hero::after {
  display: block;
  content: "";
  background-image: url(icons/icon__down-arrow.svg);
  position: sticky;
  width: 50px;
  height: 100px;
  animation-name: scrollDown;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 30px auto 0 auto;
}

@keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Breadcrumb */

.breadcrumb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
}

.breadcrumb-list {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  text-transform: capitalize;
}

.breadcrumb-list a,
.breadcrumb-list strong {
  font-size: 14px;
  letter-spacing: 1px;
  color: #000;
  font-weight: 400;
}

.breadcrumb-list a {
  text-decoration: underline;
}

.breadcrumb-list a:hover {
  text-decoration: none;
}

.breadcrumb-list li+li::before {
  content: "/";
  font-size: 14px;
  color: #afafaf;
  margin-left: 8px;
  margin-right: 8px;
}

@media (max-width: 600px) {
  .breadcrumb-list {
    display: none;
  }
}

/* Products list */

.list-products {
  display: flex;
  flex-flow: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-left: -10px;
  margin-right: -10px;
}

.list-products .list__item {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.products {
  margin-bottom: 80px;
}

.products__footer {
  text-align: center;
}

/* Product list pagination */

.pagination {
  text-align: center;
  font-size: 14px;
}

.pagination span,
.pagination a {
  padding: 5px 15px;
  text-decoration: none;
  color: #fff;
  background: #a2a2a2;
  transition: background 0.15s ease-in-out;
}

.pagination a:hover {
  color: #fff;
  background: #df6527;
}

.pagination .current {
  background: #df6527;
  color: #fff;
}

/* Card */

.card {
  margin-bottom: 20px;
}

.card__url {
  display: flex;
  padding: 20px;
  border: 1px solid #dddddd;
  color: #000;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 600px) {
  .card {
    margin-bottom: 10px;
  }

  .card__url {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.card__url:hover {
  text-decoration: none;
  box-shadow: 2px 2px 8px rgba(85, 85, 85, 0.33);
}

.card__image {
  display: inline-block;
  margin: 0;
  min-width: 200px;
  min-height: 160px;
  overflow: hidden;
}

.card__image img {
  width: 200px;
  max-height: 350px;
  object-fit: contain;
}

.card__text {
  text-align: left;
  padding-left: 20px;
  display: inline-block;
}

.card__title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #df6527;
  text-transform: uppercase;
}

.card__description {
  font-size: 14px;
  white-space: break-spaces;
}

.card__parameters {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.card__parameters__item {
  display: inline-block;
  margin-right: 20px;
  font-weight: 600;
  color: #313131;
}

/* Articles list */

.articles {}

.list-articles {
  display: flex;
  flex-flow: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-left: -10px;
  margin-right: -10px;
}

.list-articles .list__item {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* Card article */

.card-article {
  margin-bottom: 40px;
  border: 1px solid #f7f7f7;
}

.card-article__block {
  display: flex;
  padding: 20px;
  color: #000;
  font-size: 16px;
  text-align: center;
}

.card-article__block:hover {
  text-decoration: none;
  background-color: #f5f5f5;
}

.card-article .card__image img {
  width: 100%;
  border: 1px solid #eee;
}

.card-article__title {
  line-height: 1;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.34em;
}

.card-article__excerpt {
  margin-bottom: 0;
  margin-top: 0;
  color: #888;
  line-height: 1.6;
  font-size: 16px;
}

.card-article__time {
  display: block;
  line-height: 1.2;
  color: #9e9e9e;
  margin-bottom: -20px;
}

.latest-events {
  margin-bottom: 20px;
}

.latest-products {
  margin-bottom: 80px;
}

.latest-events__footer,
.latest-products__footer {
  text-align: center;
}

/* Product details */

.related-products {
  padding-top: 80px;
}

.product-details__media {
  border: 1px solid #e5e5e5;
  padding: 20px;
  text-align: center;
}

.product-details__media .product-picture img {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.product-details__media .product-details__thumb img {
  width: 32%;
  border: 1px solid rgba(191, 191, 191, 0.08);
  margin-right: 1%;
  padding: 1%;
}

.product-details__tabs {
  margin-top: 40px;
}

.product-details__tabs .tablink {
  padding: 10px 20px;
  margin: 0;
  border: none;
  background-color: #696969;
  display: inline-block;
  color: #fff;
}

.product-details__tabs .cur-tab {
  background-color: #e99367;
}

.product-details-main {
  border-top: 2px solid #e99367;
  padding-top: 20px;
}

.product-details__info {
  font-size: 16px;
}

.product-details__title {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: 3px;
  font-size: 24px;
}

.product-details__ask-price {
  border: 1px solid #df6527;
  padding: 15px 0;
  display: block;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: rgba(223, 101, 39, 0.7);
  letter-spacing: 1px;
  width: 100%;
  cursor: pointer;
}

.product-details__form {
  width: 100%;
  padding: 20px;
  position: relative;
  border: 1px solid rgba(232, 147, 103, 0.3);
  margin: 20px;
}

@media (max-width: 600px) {
  .product-details .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 900px) {
  .product-details__form {
    margin: 0;
  }
}

.product-details__form p {
  padding: 0;
  margin: 0;
}

.contact-form__text,
.contact-form__info,
.ask-price__text,
.ask-price__info {
  padding: 10px 20px;
  margin-bottom: 20px;
  width: 100%;
  border: 1px solid #e5e5e5;
}

.ask-price__info {
  height: 100px;
}

.contact-form__submit,
.ask-price__submit {
  width: 100%;
  padding: 10px 20px;
  background: rgb(249, 249, 249);
  color: #8e8e8e;
  border: 1px solid rgba(232, 147, 103, 0.3);
  cursor: pointer;
}

.wpcf7-not-valid {
  border: 1px solid rgba(223, 101, 39, 0.55);
  box-shadow: inset 0 0 1px #df6527;
}

span.wpcf7-not-valid-tip {
  color: #df6527;
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-top: -15px;
  margin-bottom: -20px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 10px 20px;
}

div.wpcf7-validation-errors {
  border: 1px solid #df6527;
  margin: 0;
  font-size: 14px;
}

div.wpcf7-mail-sent-ok {
  border: 1px solid #6be867;
  font-size: 14px;
  margin: 0;
}

.product-details__short-desc {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.product-details__short-desc span {
  font-weight: bold;
  color: #575757;
}

.product-details__short-desc li:last-child p {
  white-space: break-spaces;
}

.pdf-link {
  color: #434440;
  text-decoration: underline;
  padding-top: 10px;
  display: inline-block;
}

.pdf-link:before {
  content: "";
  background-image: url(icons/icon__pdf.svg);
  width: 32px;
  height: 32px;
  background-size: contain;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 10px;
  margin-bottom: -5px;
}

.product-details__short-table {
  border: none;
  border-collapse: collapse;
  margin-top: 20px;
  width: 100%;
}

.product-details__short-table tr {
  border-bottom: 1px solid rgba(233, 147, 103, 0.38);
  background-color: #fff !important;
}

.product-details__short-table tr:last-child {
  border-bottom: none;
}

.product-details__short-table tr:hover td {
  background-color: transparent;
  color: inherit;
}

.product-details__short-table th,
.product-details__short-table td {
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 2px;
  text-transform: initial !important;
}

.product-details__short-table th {
  font-weight: 400;
  text-align: left;
}

.product-details__short-table td {
  color: #575757;
}

.product-details table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.product-details-main table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 10px;
  width: 100%;
  text-align: left;
  table-layout: fixed;
  border-top: 2px solid #bcbbbb;
}

.product-details-main tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}

.product-details-main tr:hover td {
  background-color: #e99367;
  color: #fff;
}

.product-details-main th,
td {
  padding: 5px 10px;
  vertical-align: top;
  word-wrap: break-word;
}

.product-details-main th {
  text-transform: uppercase;
}

.product-details-main strong {
  padding-top: 20px;
  padding-left: 10px;
  display: block;
}

.product-details-main tbody tr:nth-child(2n + 1) {
  background-color: #e9e9e9;
}

.product-details-main .alignleft {
  float: left;
  margin: 0 15px 30px 0;
}

.product-details-main .aligncenter {
  display: block;
  margin: 0 auto 30px auto;
}

.product-details-main .alignright {
  float: right;
  margin: 0 0 30px 15px;
}

.product-details-main .alignnone {
  float: none;
  display: block;
  margin: 0 0 30px 0;
}

.product-details-main .size-full {
  width: 100%;
  height: auto;
  margin: 0 0 30px 0;
}

.product-details-main p .alignleft {
  float: left;
  margin: 5px 15px 30px 0;
}

.product-details-main p .aligncenter {
  display: block;
  margin: 5px auto 30px auto;
}

.product-details-main p .alignright {
  float: right;
  margin: 5px 0 30px 15px;
}

.product-details-main p .alignnone {
  float: none;
  display: block;
  margin: 5px 0 30px 0;
}

.product-details-main p .size-full {
  width: 100%;
  height: auto;
  margin: 5px 0 30px 0;
}

@media (max-width: 600px) {

  .product-details table,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td {
    font-size: 10px;
  }
}

/* Contact-form */

.contact-form {
  border-right: 1px solid rgba(223, 101, 39, 0.28);
  padding-right: 40px;
  padding-bottom: 20px;
}

.contact-form__submit,
.ask-price__submit {
  border: 1px solid rgba(189, 189, 189, 0.3);
}

@media (max-width: 900px) {
  .contact-form {
    border-right: none;
    border-bottom: 1px solid rgba(223, 101, 39, 0.28);
    padding: 0 20px;
  }
}

/* ============================= Main Footer elements ============================= */

.main-footer__wrapper {
  background-color: #313131;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  font-size: 16px;
  border-top: 2px solid rgb(142, 142, 142);
}

.main-footer__wrapper .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-footer__wrapper a {
  color: #d4a558;
}

.main-footer__wrapper .sep {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  color: #eb6f31;
}

.main-footer__social .nav {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.main-footer__social .nav__item+.nav__item {
  margin-left: 20px;
}

.main-footer__social a {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #673319;
  overflow: hidden;
}

.main-footer__social a:hover {
  background-color: #171313;
}

@media (max-width: 900px) {
  .main-footer__wrapper .sep {
    padding-left: 5px;
    padding-right: 5px;
  }

  .main-footer__wrapper {
    font-size: 10px;
  }

  .main-footer__wrapper .container {
    padding: 0 10px;
  }
}