/*
Theme Name: BrazzersMotors
Theme URI: https://khrystev.dev/
Author: Roman Khrystev
Author URI: https://khrystev.dev/
Description: Digital Marketing
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1
Requires at least: 5.0
Tested up to: 5.5
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwenty
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

.form {
  position: relative;
}

.form-messages {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 20;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  display: none;
}

.form-messages.active {
  display: flex;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--bs-primary) !important;
  text-align: center !important;
  max-width: 500px !important;
  margin: 10px auto 0 !important;
  font-size: 15px !important;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  min-width: 317px;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  position: absolute;
  bottom: -20px;
  white-space: nowrap;
}

.wpcf7,
.form-group {
  position: relative;
}

.under-h1 {
  color: var(--bs-dark);
  filter: invert(1);
}

[data-bs-theme="light"] .under-h1 {
  color: var(--bs-white);
}

.discount {
  border: 2px solid var(--bs-white);
}

[data-bs-theme="light"] .discount {
  border: 2px solid var(--bs-dark);
}

.included-item {
  text-align: center;
  gap: 15px;
}

.included-item img {
  width: 100%;
  max-width: 100px;
  filter: invert(1);
}

.included-item h3 {
  text-align: center;
  max-width: 200px;
  margin: 25px 0;
}

[data-bs-theme="light"] .included-item img {
  filter: invert(0);
}

.promotion_product_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: 50% 100%;
  background-repeat: no-repeat;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-position: right center;
  background-color: var(--bs-gray-dark);
}
.promotion_product_item .item_image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  margin: 0 0 0 40px;
}
.promotion_product_item.d-block .item_image {
  margin: 0 -80px -80px 0;
}
.promotion_product_item .item_image img {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.promotion_product_item:hover .item_image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.promotion_product_item .item_price {
  padding-top: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-family: var(--bs-font-heading);
  border-top: 2px solid var(--bs-primary);
}
.promotion_product_item .item_price .sale_price {
  line-height: 1;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: -2px;
}
.promotion_product_item .item_price sub,
.promotion_product_item .item_price .remove_price {
  opacity: 0.5;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  margin-left: 4px;
}
.promotion_product_item .item_price sub {
  bottom: 0;
  opacity: 1;
  margin-right: 5px;
}

.object-fit-cover {
    object-fit: cover;
}