.c_banner_inner{
    h1{
        color: #fff;
        font-size: 24px;
        font-family: $pop;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .6px;
        padding-bottom: 5px;
    }
}

.top_header_left{
    .selector{
        max-width: 120px;
        .ddcommon{
            max-width: 120px;
        }
    }
}

.shop_header_area{
        .navbar-nav.categories{
            li{
                .bootstrap-select{
                        .dropdown-menu{
                            .dropdown-menu.inner{
                                li{
                                    a{
                                        line-height: 40px;
                                        .text{
                                            line-height: 25px;
                                        }
                                    }
                                }
                            }
                        }
                }
            }
        }
}


.shop_header_area{
    .navbar{
        .navbar-nav{
            li{
                &.submenu{
                    .dropdown-menu{
                        li{
                            a{
                                line-height: 38px;
                                .text{
                                    line-height: 25px;
                                }
                            }
                          }
                        }
                   }
                }
          }
      }
}



/* Окно без затемнения и прозрачного фона */
.cookie-modal {
  position: fixed;
  z-index: 10000;
  bottom: 0;
  width: 100%;
  background-color: transparent; /* прозрачный фон */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
}

/* Стиль содержимого — с оранжевой рамкой, белым фоном, черным текстом */
.cookie-modal-content {
  background-color: #fff; /* белый фон */
  padding: 15px 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  border: 3px solid #007bff; /* оранжевая рамка по RGB */
  box-shadow: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Текст — черный цвет */
.cookie-modal-content p {
  margin: 0 0 10px 0;
  font-size: 14px;
  text-align: center;
  color: #000; /* черный цвет текста */
}

/* Ссылка — стандартный стиль, по желанию можно изменить */
.cookie-modal-content a {
  color: #007bff;
}


/* Окно, с оранжевой рамкой, белым фоном */
.call-modal {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* затемнение фона */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Свойства содержимого — с оранжевой рамкой, белым фоном */
.call-modal-content {
  background-color: #fff; /* белый фон */
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  border: 3px solid #007bff; /* оранжевая рамка */
  box-shadow: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Заголовок формы */
.call-modal-content h2 {
  margin: 0 0 15px 0;
  font-size: 18px;
  text-align: center;
  color: #222;
}

/* Форму — блок для элементов */
.callForm {
  display: flex;
  flex-direction: column;
}

/* Метки */
.callForm label {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
  color: #222;
}

/* Поля ввода */
.callForm input {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

/* Кнопки контейнера */
.buttons-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

/* Основная кнопка — отправить */
.btn-submit {
  flex: 1;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #007bff;
}

/* Отмена — менее яркая */
.btn-close {
  flex: 1;
  padding: 10px;
  background-color: transparent;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.btn-close:hover {
  background-color: #545b62;
}