/* app / приложение */


  // Import the functions you need from the SDKs you need
  import { initializeApp } from "https://www.gstatic.com/firebasejs/11.6.1/firebase-app.js";
  import { getAnalytics } from "https://www.gstatic.com/firebasejs/11.6.1/firebase-analytics.js";
  // TODO: Add SDKs for Firebase products that you want to use
  // https://firebase.google.com/docs/web/setup#available-libraries

  // Your web app's Firebase configuration
  // For Firebase JS SDK v7.20.0 and later, measurementId is optional
  const firebaseConfig = {
    apiKey: "AIzaSyDyVFGLd5lRu6_3Z5EHV0EyOdTVT4qa7Nc",
    authDomain: "swaggfoxal-d0b1f.firebaseapp.com",
    projectId: "swaggfoxal-d0b1f",
    storageBucket: "swaggfoxal-d0b1f.firebasestorage.app",
    messagingSenderId: "1067253499749",
    appId: "1:1067253499749:web:d0f1c49a4e217f5cef038c",
    measurementId: "G-117P61KN67"
  };

  // Initialize Firebase
  const app = initializeApp(firebaseConfig);
  const analytics = getAnalytics(app);




/* Ползунок / scroll-bar */

@media screen and (min-width: 321px) {
    ::-webkit-scrollbar-thumb {
     background: #C11116;
     border-radius: 6px;
    }
    ::-webkit-scrollbar {
     width: 0px;
     height: 0x;
     background: #0C0608;
    }
}



/* фон */

    html {
     background: #0C0608;
    }



/* Изменение корзины */

.t706__cartwin-content {
    /* Цвет фона корзины */
    background-color: #1B131E !important;
    /* Радиус окна корзины */
    border-radius: 6px;
}

.t706__cartwin-heading {
    /* Цвет заголовка окна корзины */
    color: #000000 !important;
}

.t706__product-title {
    /* Цвет заголовка в карточке товара */
    color: #C11116 !important;
}
.t706__product-title__option {
    /* Цвет описания в карточке товара */
    color: #505050 !important;
    opacity: 1 !important;
}

.t706__product-quantity,
.t706__product-quantity-inp {
    /* Цвет количества товара */
    color: #000000 !important;
}

.t706__product-quantity:hover,
.t706__product-quantity_editing:hover {
    /* Цвет бордюра, который появляется при наведении на количество товара */
    border: 1px solid rgba(255,255,255,0.100) !important;
}

.t706__product-amount {
    /* Цвет цены в карточке товара */
    color: #000000 !important;
}

.t706__cartwin-prodamount-wrap {
    /* Цвет суммы заказа */
    color: #00ff88 !important;
}

.t706__cartwin-top {
    /* Толщина и цвет верхней линии */
    border-bottom: 1px solid #aaaaaa;
}
.t706__cartwin-bottom {
    /* Толщина и цвет нижней линии */
    border-top: 1px solid #aaaaaa;
}

.t706__product-plus,
.t706__product-minus,
.t706__product-del {
    opacity: 1!important;
}
.t706__product-plus img,
.t706__product-minus img,
.t706__product-del img{
    display: none;
}
.t706__product-plus:before,
.t706__product-minus:before,
.t706__product-del:before {
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    display: inline-block;
    position: relative;
    top: 3px;
}
.t706__product-del:before {
    width: 12px;
    height: 12px;
    top: 2px;
}
.t706__product-plus:before {
    /* Ссылка на иконку «Плюс» */
    background-image: url('https://static.tildacdn.com/tild6261-6232-4664-b365-356438366237/plus.svg');
    background-position: 50% 50%;
}
.t706__product-minus:before {
    /* Ссылка на иконку «Минус» */
    background-image: url('https://static.tildacdn.com/tild3936-3034-4266-b634-366232303032/minus.svg');
    background-position: 50% 50%;
}
.t706__product-del:before {
    /* Ссылка на иконку «Крестик» */
    background-image: url('https://static.tildacdn.com/tild3739-3864-4537-b261-626137386662/exit.svg');
    background-position: 50% 50%;
}



