@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary: #ffe600!important;
  --yellow: #ffe600!important;
  --black: #000;
  --border-grey: #cdcdcd;
  --lightgrey: #F2F2F2;
  --white: #fff;
  --border-radius: 20px;
  --border-radius-container: 20px;
  --border-radius-el: 5px;
  --font-family-title: "Plus Jakarta Sans", sans-serif;
  --font-family-text: "Roboto", sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-text);
  color: var(--text-main);
  min-height: 100%;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body[data-path^="blog/"] main,
body[data-path="list"] main {
  padding-top: 100px;
}
section[dtaa-section-template='shop'] {
  position: relative;
}
main {
  display: flex;
  flex-direction: column;
}
p, ul, ol, a {
  font-size: 16px;
  line-height: 1.5;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}
button:hover {
  cursor: pointer;
}
.btn-el {
  display: inline-flex;
  padding: 5px 10px;
  width: fit-content;
  font-family: var(--font-family-title);
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-el)!important;
  outline: none;
  cursor: pointer;
  text-decoration: none!important;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.btn-el:hover {
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-arrow-svg {
  background: var(--gradient-blue);
  display: flex;
  width: 40px;
  height: 40px;
  padding: 13px 11px;
  justify-content: center;
  align-items: center;
}
.btn-arrow-svg-blue {
  background: var(--gradient-blue);
}
.btn-arrow-svg-white {
  background: var(--gradient-blue);
}
.btn-el.btn-light {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
}
.btn-el.btn-light:hover {
  background-color: #e9eefd;
}
.btn-el.btn-dark {
  background-color: var(--black);
  color: var(--white);
}
.btn-el.btn-arrow {
  padding: 5px 5px 5px 15p;
}
.btn-el.btn-dark:hover {
  background-color: var(--primary);
  color: var(--black);
}
.btn-el.btn-yellow {
  background-color: var(--primary);
  color: var(--black);
}
.btn-el.btn-yellow:hover {
  background-color: var(--black);
  color: var(--white);
}
.element-disapear-js {
  transition: opacity 0.5s;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1.1;
  font-family: var(--font-family-title);
  text-transform: uppercase;
}

h1,
.h1  {
  font-size: 2.7rem;
  font-weight: 700;
}

h2,
.h2 {
  font-size: 2.3em;
  font-weight: 700;
}

h2 span {
  color: var(--primary);
}

h3,
.h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

input[type=checkbox].disabled-deselected, 
input[type=checkbox]:disabled {
  background-color: var(--white)!important;
  box-shadow: none!important;
  width: 20px !important;
  height: 20px;
}

input[type="checkbox"][disabled]:checked {
  background-color: var(--yellow)!important;
}

.navbar-brand  img.header_logo {
  max-height:45px;
  display: flex;
}

@media (min-width: 1200px) {
    .section-padding-top,
    .section-padding-bottom {
        padding-top: 6rem!important;
    }
}