/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allerta+Stencil&display=swap');
@import url("https://use.typekit.net/mml3kjb.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
/* --- Chat vs Cookies position --- */
body.noaccept #chat-widget-container {
    bottom: 75px !important;
}

body.noaccept.accept #chat-widget-container,
body.accept #chat-widget-container {
    bottom: 0 !important;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

@media (min-width: 630px) and (max-width: 767px) {
    body.noaccept #chat-widget-container {
        bottom: 110px !important;
    }
}

@media (min-width: 455px) and (max-width: 629px) {
    body.noaccept #chat-widget-container {
        bottom: 0 !important;
    }

    #cookie-bar .text-center {
        text-align: left !important;
    }
}
#cookie-bar {
    position: fixed;
    bottom: 0;
    padding: 1rem;
    background-color: var(--main-light);
    z-index: 1000000;
}
#cookie-bar .text-md-left{
    color: #495057!important;
}
@media (max-width: 767px) {
    #cookie-bar #accept-cookies {
        margin-top: -8px;
    }

    #cookie-bar {
        padding-top: 24px;
    }
}

@media (max-width: 454px) {
    body.noaccept #chat-widget-container {
        bottom: 135px !important;
    }

    #cookie-bar .text-center {
        padding-left: 0;
        padding-right: 0;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: var(--body-color)
}
	{% if navConcept.settings.get('header_variant') == 3 %}
.form-control {
    width:100%!important;
}
.subscribe-checkbox {
    width: 40px;
    height: 40px;
    border: 2px solid #18992c;
    border-radius: 5px;
    display: block;
}
.checkmark {
    display: inline-block;
    width: 16px;
    height: 16px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg) scale(2);
    transform: rotate(45deg) scale(2);
}
.checkmark_stem {
    position: absolute;
    width: 3px;
    height: 9px;
    background-color: #18992c;
    left: 11px;
    top: 6px;
}
.checkmark_kick {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #18992c;
    left: 8px;
    top: 12px;
}
.filters-block .brand-filter {
    max-height: 250px;
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    padding: 0 0.4rem 0.5rem;
    border-bottom: 0.5px solid #f1f1f1;
    overflow-y: scroll;
}
	.collapsible {
    border: none;
}

	{% endif %}
/* --- Colors --- */

:root {
    --main: #8cd0e3;
    --main-light: #deedf1;
    --main-dark: #4db2ce;
    --main-third:#e2f9ff;
    --body-color: #212529;
    --cta-green: #000000;
    --cta-green-dark: #06AA98;
    --grey: #ced4da;
    --grey-dark: #000000;
    --grey-light: #f8f9fa;
}

.border{
    border:1px solid var(--main-light)!important;
}

/* --- Override --- */
.text-success {
    color: var(--cta-green) !important;
}

/* --- Buttons --- */

.btn, .btn-main, .btn-sec-dark, .btn-ter-dark, .btn-main-dark, .btn-main-light {
    border-radius: 5px;
}

.form-control {
    border-radius: 0;
}

.btn-main {
    font-weight: 400;
    background-color: var(--main);
    color:#fff;
    font-size:20px;
   background-image: linear-gradient(rgb(0 0 0 / 0%),rgba(0,0,0,.1) 50%,rgb(0 0 0 / 15%));
    background-repeat: repeat-x;
    background-size: 200%;
    background-position: 0 -100%;
    border: 1px solid transparent;
}

.btn-main:hover {
    background-color: var(--main-dark);
    filter: brightness(0.95);
     color:#fff!important;
}

.btn-sec-dark {
    color: var(--main-dark);
    background-color: transparent;
    padding: .7rem 1.5rem;
}

.btn-sec-dark:hover {
    background-color: var(--main-dark);
    color: white
}

.btn-sec-dark:focus {
    background-color: var(--main-dark);
    color: white;
    filter: brightness(0.85);
}

.btn-main-light {
    color: var(--main);
    border: none;
    background-color: white;
    padding: .7rem 1.5rem;
}

.btn-main-light:hover {
    color: var(--main-dark);
}

.btn-ter-dark, .btn-main-dark {
    color: white;
    border: none;
    background-color: var(--main);
    padding: .7rem 1.5rem;
}

.btn-ter-dark:hover, .btn-main-dark:hover {
    background-color: var(--main-dark);
}

.btn-mini {
    padding: .4rem 1rem
}

.btn-add-to-cart-sm,
.btn-submit {
    text-transform: uppercase;
    color: white;
    background-color: var(--cta-green);
}

.btn-submit {
    border: none;
    padding: .7rem 1.5rem;
}

.btn-add-to-cart {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: black;
    font-weight: 600;
    padding: 1rem 3rem;
}

.btn-add-to-cart:hover,
.btn-add-to-cart-sm:hover,
.btn-submit:hover:not([disabled="disabled"]):not([disabled]) {
    color:white;
    background-color: var(--cta-green-dark);
}

.btn-add-to-cart:disabled,
.btn-add-to-cart-sm:disabled,
.btn-submit:disabled {
    opacity:0.7;
    cursor: default;
}

.overlay-text > .bg-dark {
    border-radius:8px;
}

/* --- Other --- */

.bg-primary{
    background-color:var(--main)!important;
}

.bg-secundary{
    background-color:var(--main-light)!important;
}
.hover-white:hover{
    background-color:white!important;
}
.bg-tertiary {
    background-color: var(--main-third);    
}

.rounded {
    border-radius: 25px !important;
}

.main-form > input,
.main-form > textarea,
.login-form select,
.login-form input {
    border-color: #707070;
    border-radius: 8px;
}

.main-form > input,
.login-form input {
    padding: 18px 25px;
}

.login-form select {
    padding: 10px 21px;
    height: 62px;
}

.main-form > textarea {
    padding: 20px 25px; 
}

/* --- Cards --- */

.img-card {
    overflow: hidden;
    border-radius:8px;
    box-shadow: 5px 5px 15px 5px #B0B0B0;
}

.column-img {
    background-size: cover;
    height: 100%;
}


 .block{
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      font-size: 16px;
    }
    .block h2{
      position: relative;
      display: block;
      text-align: center;
      margin: 0;
      top: 50%;
      transform: translateY(50%);
      font-size: 10vw;
      color: white;
      font-weight: 400;
    }
    
    .block div{
      position: relative;
      display: block;
      text-align: center;
      margin: 0;
      top: 50%;
      transform: translateY(350%);
      color: white;
      font-weight: 400;
    }
    .img-parallax {
      width: 100vmax;
      z-index: -1;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%,0);
      pointer-events: none
    }
    
      .hiw-icon{
        font-size:30px;
        margin: 0 auto;
        height:60px;
        width:60px;
        padding: 15px 0;
        line-height: 30px;
    }

/* --- Front-page --- */

header.main-page {
  
}
/*-- Container --*/
@media (min-width: 2000px){
.container {
    max-width: 70%;
}
}
@media (min-width: 1200px){
.container {
    max-width: 1400px!important;
}
}
@media (max-width: 575.98px) {
    .container {
        min-width: 100%;
    }
}





@media only screen and (max-width: 991px) {
    .scrollable-menu {
        height: auto;
        max-height: 400px;
        overflow-x: hidden;
    }
}