// Главное меню
//

.menu-header-menu-container {
    padding: 0 20px;
}

ol.breadcrumb {
    margin: 15px 0;
}

@media only screen and (max-width: 580px) {
    .spb-item .ssoc {
        margin: 20px 0 0;
    }
}

@media only screen and (max-width: 1249px) {
    .logo {
        position: relative;
        z-index: 10;
    }
    .img-logo img {
        max-height: 45px;
    }
    header {
        height: 60px;
    }
    .mobil-mnu {
        top: 20px;
    }
    .header .navigation {
        top: 60px;
        width: 240px;
    }
    .menu-header-menu-container {
        padding: 0;
    }
}

// Опыт
//
.info {
    h2 {
        padding-bottom: 20px;
    }
    .num {
        padding-top: 20px;
    }
}

// YouTube
.video-block .block {
    padding: 22px 5px 0px 25px;
}

// Каталог
//
.tm-catalog-filter {
    .form-label {
        font-size: 13px;
    }
    .dropdown-menu .dropdown-item {
        font-size: 13px;
    }
    .form-select option {
        font-size: 13px;
    }
    .bs-searchbox {
        padding: 10px 15px !important;
    }
    select, input, textarea {
        height: 36px;
    }
}
.tm-catalog-items {
    .row {
        margin: 0;
    }
    .table {
        td {
            padding-right: 10px;
            padding-left: 0;
        }
    }
}
.tm-catalog-items__complect {
    padding: 7px 0;
    font-size: 13px;
}
.tm-catalog-items__param {
    font-weight: 600;
}

.tm-catalog-items__param__btn--send a {
    width: 45%;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .tm-catalog-items__param__btn--send {
        display: block;
        margin: 10px 0;
        a {
            width: 100%;
            margin-right: 0;
        }
    }
    .tm-catalog-items__param__btn--other {
        a {
            width: 49%;
        }
    }
    .s-question .wrap-ban {
        padding: 10px 20px;
    }
}

// Каталог марки
//
.tm-catalog-marka {
    h1 {
        color: #030018;
        font-size: 25px;
    }
}

// Листинг карточек
.price-key{
    display: block;
    font-size: 11px;
    font-weight: 600;
}

// Карточка машины
//
.tm-table-letter {
    padding-right: 10px;
    display: inline-block;
    width: 40px;
}
.items-start {
    padding-bottom: 5px;
}

.tm-catalog-item {
    .tm-catalog-item__param {
        font-weight: 600;
    }
    .tm-catalog-item__link {
        height: 25px;
        padding: 3px 10px;
        font-size: 12px;
        margin: 0 10px;
    }
    .show-prices{
        color: #ed1a14;
        font-size: 14px;
        text-decoration: underline;
    }
    .prices {
        .row{
            padding: 0 3px;
        }
        p {
            margin-bottom: 5px;
            font-size: 14px;
        }
        .prices-kurs{
            font-size: 12px;
        }
    }
    .text-privacy{
        font-size: 12px;
    }
}

@media only screen and (max-width: 580px) {
    .fotorama {
        margin-bottom: 15px;
    }
}

// Форма заявки
//
.tingle-modal {
    .btn {
        height: 100%;
    }
}
.tingle-modal-box__footer {
    display: none;
}

// Убираем логотип каптчи
.grecaptcha-badge {
    visibility: hidden !important;
}

.wrap-ul-mobile {
    display: none;
    position: absolute;
    top: 130%;
    background: rgb(255, 255, 255);
    width: 200px;
    border-radius: 20px;
}

.wrap-ul-mobile li {
    margin: 10px 0;
}

// Формы в каталоге
//
input,
textarea,
select {
    text-indent: 5px;
}
.form-select,
.form-control,
.filter-option-inner-inner {
    font-size: 12px;
    color: #585c5e;
    padding: 0 0.4rem;
}
.bootstrap-select > .dropdown-toggle {
    padding-top: 10px;
    color: #585c5e;
}
.bootstrap-select .btn {
    --bs-btn-padding-x: 1.2rem !important;
}
.bootstrap-select button {
    height: 35px !important;
}
.bootstrap-select .btn{
    padding-left: 5px;
}

// Баг с выпадающим списком фильтра
.dropdown-menu {
    max-height: 300px !important;
    margin-bottom: 10px;
    .inner {
        max-height: 230px !important;
    }
}

.dropdown-menu {
    max-width: 300px !important;
    overflow-x: auto !important;
}

ul.dropdown-menu {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

// Футер
footer {
    margin-top: 30px;
    padding: 30px 0 20px;
    .item {
        padding-top: 20px;
    }
}

// Виджет
.messenger-widget {
        position: fixed;
        right: 30px;
        bottom: 30px;
        z-index: 9999;
}
/* Главная кнопка */
.main-button {
        width: 55px;
        height: 55px;
        background: #64c03a;
    /* новый цвет */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
}
.main-button svg {
        width: 26px;
        height: 26px;
}
/* Волны */
.main-button::before, .main-button::after {
        content: "";
        position: absolute;
        border: 1px solid #64c03a;
    /* новый цвет */
        border-radius: 50%;
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        animation: pulse 2.5s infinite;
        opacity: 0;
}
.main-button::after {
        animation-delay: 1.3s;
}
    @keyframes pulse {
        0% {
            transform: scale(0.5);
            opacity: 0;
    }
        50% {
            opacity: 1;
    }
        100% {
            transform: scale(1.3);
            opacity: 0;
    }
}
/* Кнопки мессенджеров */
.messenger-btn {
        position: absolute;
        right: 5px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
}
.messenger-btn svg {
        width: 26px;
        height: 26px;
        fill: #fff;
}
/* WhatsApp */
.whatsapp {
        background: #25D366;
        bottom: 125px;
}
/* Telegram */
.telegram {
        background: #2aabee;
        bottom: 180px;
}
.telegram svg{
    width: 40px;
    height: 40px;
}
/* Активное состояние */
.messenger-widget.active .messenger-btn {
        opacity: 1;
        pointer-events: auto;
}
.max svg {
    width: 45px;
    height: 45px;
}
/* MAX */
.max {
    background: transparent;
    bottom: 70px;
    width: 45px;
    height: 45px;
    padding: 0;
}

//
// Новые преимущества
.b-advantages .block{
    p{
        margin-top: 0;
        margin-bottom: 1rem;
    }
    strong {
        font-size: 22px !important;
        line-height: 28px !important;
    }
    span{
        font-size: 14px;
    }   
}

//
// Старые стили с картинками
.offer.btns-style {
    background: url('/static/uploads/2023/11/bg-new-1.jpg') no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    padding-top: 60px;
    padding-bottom: 75px;
}
.offer.btns-style:before,
.offer.btns-style:after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.offer.btns-style:after {
    background-image: url('/static/img/bg/circles-2.png');
    bottom: 0;
    right: 0;
    width: 38%;
    height: 38%;
    background-position: bottom;
}
@media only screen and (max-width: 580px) {
    .offer.btns-style {
        background: url('/static/uploads/2023/11/bg-new-1.jpg') no-repeat center;
        background-size: cover;
    }
}

.korea:before {
    background-image: url('/static/img/bg/korea-optimized.webp') !important;
    background-size: 100%;
    background-position: top right;
    padding-top: 0;
    padding-bottom: 0;
    width: 60%;
    max-width: 960px;
    height: 75%;
    display: block;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 10%;
}
.japan:before {
    background-image: url('/static/img/bg/japan-optimized.png') !important;
    background-size: 100%;
    background-position: top right;
    padding-top: 0;
    padding-bottom: 0;
    width: 60%;
    max-width: 960px;
    height: 75%;
    display: block;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 10%;
}
.china:before {
    background-image: url('/static/img/bg/china-optimized.webp') !important;
    background-size: 100%;
    background-position: top right;
    padding-top: 0;
    padding-bottom: 0;
    width: 60%;
    max-width: 960px;
    height: 75%;
    display: block;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 10%;
}
.korea:after {
    display: none;
}
.japan:after {
    display: none;
}
.china:after {
    display: none;
}

@media only screen and (max-width: 580px) {
    .korea:before{
        display: none;   
    }
    .japan:before{
        display: none;   
    }
    .china:before{
        display: none;   
    }
}

//
// Персональные данные
.privacy{
    .page-content p{
        font-size: 13px;
        text-align: right;
    }
}

//
// Форма заявки
.form-popup {
    max-width: 600px;
    padding: 40px 60px;
    .alert-warning{
        color: #ffa217;
    }
    .form-popup .des {
        margin-bottom: 20px;
    }
}

//
// Марки
.marki{
	margin: 20px 0 40px;
	.text-body{
		padding: 10px;
		border: 1px solid #dee2e6;
		border-radius: 5px;
        font-size: 12px;
        &:hover{
            background: #ccc;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }
    }
}

// Перелинковка
.link_btn{
    margin-right: 10px;
}