:root {
    --color-dark: #060606;
    --color-orange: #e5a132;
    --color-white: #fff;
    --color-green: #28a745;
}
.main-page-wrap {
    display: flex;
}
.catalog-sidebar {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 38px 0;
    position: sticky;
    top: 79px;
    width: 280px;
    height: 100dvh;
    background: var(--color-dark);
    font-size: 16px;
    line-height: 22px;
    color: var(--color-white);
}
.sidebar-title {
    padding: 20px 30px;
    font-family: VoxRoundWide-Bold, sans-serif;
    text-transform: uppercase;
}

.catalog-sidebar a {
    width: 100%;
    color: var(--color-white);
}

.sidebar-item {
    padding: 20px 30px;
    width: 100%;
    transition: 0.2s;
}

.sidebar-item:hover {
    background: #252525;
    color: var(--color-orange);
}
.product-main-container {
    color: var(--color-white);
    width: 100%;
}
.bf6-background {
    background: url('https://overboost.pro/catalog/view/theme/overboost/image/bf6/bettlefield6-bg.jpg') top / contain no-repeat, #000;
}
.product-main-wrap {
    display: grid;
    flex-direction: column;
    align-items: flex-start;
/*    justify-content: center;*/
    padding-left: 48px;
    width: 90%;
    row-gap: 24px;
    column-gap: 60px;
    grid-template-columns: minmax(0, 1fr) 360px;
    grid-template-areas:
    "catalog-breadcrumbs catalog-breadcrumbs"
    "product-main-text product__calc"
    "product__content product__calc";
}
.product-main-wrap p {
    margin-block: 1em;
    font-size: 16px;
    line-height: 1.5;
}
.product__wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.catalog-breadcrumbs {
    grid-area: catalog-breadcrumbs;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    width: 100%;
}

.bread-cont-block, .bread-cont-reviews {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.bread-cont-reviews span {
    color:#fff;
    font-family:'VoxRoundWide-Bold',sans-serif;
    margin-left:14px;
}
.breadcrumb_product {
    display: flex;
    padding: 8px 0;
    font-family: VoxRoundWide-Bold, sans-serif;
    margin: 0;
}

.breadcrumb_product li {
    display: inline-block;
}
.breadcrumb_product > li + li::before {
    color: rgb(204, 204, 204);
    content: " › ";
    padding: 0px 5px;
}

.breadcrumb_product li span {
    color: var(--color-white);
    transition: .5s;
}
.bread-cont-block li:last-child span {
    color:#b9b9b9
}

.product__content {
    grid-area: product__content;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.product-main-text {
    grid-area: product-main-text;
    width: 100%;
}
.product-main-text h1 {
    font-family: VoxRoundWide-Bold, sans-serif;
    font-size: clamp(24px, 30px, 40px);
}
.catalog-icon-benefits-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.catalog-icon-benefits-item {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
    border: 1px solid var(--color-orange);
    border-radius: 10px;
    padding: 6px 12px; 
    column-gap: 10px;
    font-family: OpenSans-Regular, sans-serif;
    background: rgba(229, 161, 50, 0.1);
    font-size: 14px; 
}
.product-main-content-regular {
    display: flex;
    flex-direction: column;
}
.product-main-content-accent {
    padding: 0 22px;
    background: rgba(229, 161, 50, 0.1);
    border: 1px solid #fcb138;
    border-radius: 10px;
}
.product__content .product-main-content-regular:last-child {
    margin-bottom: 60px;
}
.product-regular-title {
    font-size: 24px;
    line-height: 1.5;
    font-family: VoxRoundWide-Bold, sans-serif;
}
h3.product-regular-title {
    font-size: 18px;
    margin-top: 20px;
}
.product-main-content-regular span, .product-main-content-accent span, .faq-item__text span {
    color: var(--color-orange);
    font-weight: 700;
}
.product-main-content-regular ul, .product-main-content-regular ol, .faq-item__text ul {
    padding-left: 30px;
    margin-block: 1em;
}
.product-main-content-regular li, .faq-item__text li {
    display: list-item;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
}
.product-main-content-regular li::marker, .faq-item__text li::marker {
    color: var(--color-orange);
}
.product-main-content-regular img {margin-block:1em}
.product__calc {
    grid-area: product__calc;
    background: #151414;
    border-radius: 12px;
    border: 1px solid #333;
}
.product__calc-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.calc-options-items-wrap {
    display: flex;
    row-gap: 20px;
    column-gap: 10px;
    flex-wrap: wrap;
}

.product__calc-buttons, .product__calc-buttons-one {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: 0 0;
    border: none;
    padding: 0;
    filter: grayscale(100%);
    min-width: 75px;
    cursor: pointer;
    width: 31%;
}
.product__calc-buttons.active, .product__calc-buttons-one.active {
    filter: none;
    color: #e5a132;
}

.product__calc-buttons img, .product__calc-buttons-one img  {
    width: 40px;
}
.product__calc-buttons span, .product__calc-buttons-one span {
    font-family: VoxRoundWide-Bold, sans-serif;
    font-size: 14px;
}
.calc-img-bg {
    background: url('https://overboost.pro/catalog/view/theme/overboost/image/product-calc-bg.webp') bottom/cover no-repeat, #181818;
    padding-bottom: 10px;
    border-radius: 12px;
}
.product__calc-img {
    padding: 20px;
}
.product__calc-img img {
    width: 100%;
}

.product__calc-options-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px 20px;
    margin-bottom: 40px;
    margin-top: -20px;
}

.calc-options-title {
    display: inline-flex;
    font-family: VoxRoundWide-Bold, sans-serif;
    font-size: 16px;
    margin-bottom: 16px;
    width: 100%;
    align-items: center;
    white-space: nowrap;
}
.calc-options-title::after {
    content: '';
    background: #333;
    height: 1px;
    width: 100%;
    margin-left: 8px;
}
.product__calc-prices {
    font-family: VoxRoundWide-Bold, sans-serif;
    display: inline-flex;
    justify-content: space-between;
}
.product__calc-currentprice {
    font-size: 34px;
}
.product__calc-oldPrice {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: .5;
    font-size: 18px;
}
.product__calc-oldtotal {
    text-decoration: line-through;
}
.product__calc-discount {

}
.product__calc-promocode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.product__calc-promotitle {
    font-size: 12px;
    line-height: 1.5;
    border-bottom: 1px dashed white;
    cursor: pointer;
    margin-block: 10px;
}
.product__calc-promocode input {
    display: none;
}
.product__calc-promocode .active {
    display: inline-block;
}
.product__calc-codeinput {
    background-color: transparent;
    border: 1px solid #ffa23f;
    border-radius: 12px;
    font-family: Opensans-regular, sans-serif;
    font-size: 12px;
    color: #fff;
    padding: 12px 20px;
    position: relative;
    outline: none;
}
.product__calc-buy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: static;
    z-index: 3;
    bottom: 20px;
    background: #151414;
    padding: 20px;
    border-radius: 0 0 12px 12px;
    border: 1px solid #333;
    margin: -1px;
    margin-bottom: 22px;
    box-shadow: rgb(0 0 0) 0px 20px 0px 5px;
}
.product__buy-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-button {
    display: inline-flex;
    align-items: center;
    height: 38px;
    white-space: nowrap;
    padding: 26px 20px;
    border-radius: 12px;
    border: none;
    font-family: VoxRoundWide-Bold, sans-serif;
    color: var(--color-white);
    cursor: pointer;
}
.button-orange {
    position: relative;
    background: var(--color-orange);
    transition: 0.3s;
}
.button-green {
    position: relative;
    background: var(--color-green);
    transition: 0.3s;
}

.button-orange::before, .button-green::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 16px;
    margin-right: 10px;
    background: url('https://overboost.pro/catalog/view/theme/overboost/image/icons/ChatCenteredDots.svg') center/cover no-repeat;
}

.button-orange:hover {
    background: #fcb138;
}
.button-green:hover {
    background: #32c854;
}
.product__buy-buttons > button {
    min-width: 80%;
    justify-content: center;
    text-transform: uppercase;
}
.ProductPayButton::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 16px;
    margin-right: 10px;
    background: url('https://overboost.pro/catalog/view/theme/overboost/image/icons/ShoppingCart.svg') center/cover no-repeat;
}
.product__calc-buy-questions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-block: 10px;
}
.product__buy-buttons p {
    margin: 0;
    text-align: center;
}
.product__buy-buttons p:last-child {
    color: var(--color-orange);
    font-weight: bold;
}
.product__modal-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    cursor: pointer;
}
.product__modal-close svg path {
    fill: var(--color-white);
}

.product__modal-close:hover svg path {
    fill: var(--color-orange);
}

.product__modal-close svg {
    transition: .3s;
}
.product__modal-close:hover svg {
    transform: rotate(90deg);
}
.new_buy p.info {
    font-size: 14px;
}

#AddPayButton {
    position: fixed;
    width: 100%;
    bottom: 0;
    right: 0;
    display: none;
    background: #151414;
    color: white;
    padding: 10px 20px;
    z-index: 3;
}
.additional-pay-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 38px;
    white-space: nowrap;
    padding: 26px 20px;
    border-radius: 12px;
    border: none;
    font-family: VoxRoundWide-Bold, sans-serif;
    color: var(--color-white);
    background: var(--color-green);
    transition: 0.3s;
    cursor: pointer;
}

.btn-yellow {
    background: rgba(229, 161, 50, 0.1);
}
.faq-item {
    margin: 34px 0 0!important;
}

.slider-clients__wrapper {
    margin-inline: 34px;
    margin-top: 2em;
}
.slider-clients {
    margin-block: 0!important;
}
.product-main-wrap .slider-clients__wrapper .js-slider-clients__left {
    left: -34px;
}
.product-main-wrap .slider-clients__wrapper .js-slider-clients__right {
    right: -34px;
}
.slider-clients__wrapper .button-Slider img {
    filter: invert(100%);
}
.slider-clients__item {
    background: linear-gradient(200deg, transparent, #09131c 80%)!important;
}
.slider-clients__content p {
    color: #fff!important;
}
.review_service_name {
    color: #e5a132!important;
}
.review_game_name {
    color: #fff!important;
}
.slick-initialized .slick-slide {
    min-height: 244px!important;
}
.product-main-wrap .slider-clients__wrapper .button-Slider:hover {
    background: transparent;
}
.dropdown-menu-mobile {
  display: none;
  width: 100%;
  font-family: inherit;
  position: relative;
}
.dropdown-toggle {
  font-family: VoxRoundWide-Bold, sans-serif;
  width: 100%;
  background: rgba(229, 161, 50, 0.1);
  color: #fff;
  border: 1.5px solid #e5a132;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: box-shadow 0.15s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
}
.dropdown-toggle:active,
.dropdown-toggle:focus {
  outline: none;
  box-shadow: 0 2px 14px rgba(0,0,0,0.15);
}
.dropdown-arrow {
  margin-left: 10px;
  font-size: 22px;
  transition: transform 0.2s;
}
.dropdown-toggle.active .dropdown-arrow {
  transform: rotate(-180deg);
}
.dropdown-list {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #19120a;
  border: 1.5px solid #292014;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
  z-index: 22;
  overflow: hidden;
  padding: 0;
  margin-top: 6px;
}
.dropdown-list.show {
  display: block;
  animation: fade-in 0.21s;
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(-7px);}
  to { opacity: 1; transform: translateY(0);}
}
.dropdown-item {
  display: block;
  padding: 15px 20px;
  color: #f3f2e9;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid #252018;
  transition: background 0.13s;
}
.dropdown-item:last-child {
  border-bottom: none;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: #2a1c09;
  color: #ff9800;
}

@media (min-width: 1830px) {
    .product__calc-buy {
        margin-right: -2px;
        margin-left: 0;
    }
}
@media (max-width: 1919px) {
    .product-main-wrap {
        width: 93%;
    }
}
@media (max-width: 1650px) {
    .catalog-icon-benefits-list {
        gap:10px;
    }
}
@media (max-width: 1600px) {
    .catalog-sidebar {
        width: 230px;
    }
    .catalog-breadcrumbs {
        padding-bottom: 0;
    }
}
@media (max-width: 1550px) {
    .catalog-icon-benefits-list {
        flex-wrap: wrap;
        gap:20px;
    }
}
@media (max-width: 1440px) {
    .catalog-main-wrap {
        width: 95%;
    }
    .catalog-sidebar {
        width: 210px;
    }
}

@media (max-width: 1050px) {
    .product-main-wrap {
        width: 100%;
        padding: 0;
        grid-template-columns: 90%;
        grid-template-areas:
            "catalog-breadcrumbs"
            "product-main-text"
            "dropdown-menu-mobile"
            "product__calc"
            "product__content";
    }
    /*.breadcrumb_product {
        flex-direction: column;
        row-gap: 6px;
    }
    .breadcrumb_product li:nth-child(2) {
        margin-left: 10px;
    }
    .breadcrumb_product li:nth-child(3) {
        margin-left: 20px;
    }
    .breadcrumb_product li:nth-child(4) {
        margin-left: 30px;
    }*/
}
@media (min-width: 1050px) {
    .product__calc-buy {
        position: sticky;
    }
}
@media (max-width: 992px) {
    .catalog-sidebar-wrapper {
        display: none;
    }
    .dropdown-menu-mobile {
        display: block;
    }
}
@media (max-width: 768px) {
    .main-page-wrap {
        flex-direction: column;
    }
    .catalog-breadcrumbs {
        flex-direction: column;
        row-gap: 14px;
    }
}
@media (max-width: 600px) {
    .product__wrap {
        flex-direction: column;
    }
    .product-main-wrap {
        padding-inline: 10px;
        grid-template-columns: 100%;
    }
    .breadcrumb_product li {
        font-size: 10px;
    }
    .bread-cont-block, .bread-cont-reviews {
        width: 100%;
    }
    .bread-cont-reviews {
        justify-content: left;
    }
    .catalog-icon-benefits-list {
        flex-wrap: nowrap;
        overflow: auto;
        width: 100%;
        scrollbar-width: none;
    }
    .product__calc {
        width: 100%;
    }
    .product__calc-currentprice {
        font-size: 32px;
    }
    .product-main-wrap .slider-clients__wrapper .js-slider-clients__left {
        left: -22px;
    }
    .product-main-wrap .slider-clients__wrapper .js-slider-clients__right {
        right: -25px;
    }
}
@media (max-width: 400px) { 
    .slider-clients__profile {
        flex-direction: column;
        text-align: center;
    }
    .slider-clients__profile picture {
        margin-right:0;
    }
}
@media (max-width: 360px) {
    .product__calc-buttons, .product__calc-buttons-one {
        width: 30%;
    }
    .product__calc-currentprice {
        font-size: 28px;
    }
    .product__calc-oldPrice {
        font-size: 14px;
    }
}