/*FONTS START*/
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*FONTS START*/

/*VAR STRAT*/
:root {
    --title-font-family: "Teko", sans-serif;
    --blog-title-font: "Poppins", sans-serif;

}

/*VAR END -*/

* {
    margin: 0;
    /*padding: 0;*/
    /* outline: 1px solid red; */
}

body {
    min-width: 360px;
    max-width: 1920px;
    margin: 0 auto;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding-top: 100px;
}

/* BLIKE CLASSES START */

.op-0 {
    opacity: 0;
}

.op-1 {
    opacity: 1;
}

/* BLIKE CLASSES END */

/* MENÜ STRAT */

nav {
    background-color: white;
    max-width: 1920px;
    min-width: 360px;
    margin: 0 auto;
}

nav ul li a.nav-link {
    color: rgb(50, 86, 152);
    font-weight: 500;
 
}
nav ul.dropdown-menu.show{
    background-color: #53d391;
    color: white;
}
nav ul.dropdown-menu>li>a.dropdown-item:hover{
    background-color: #53d391;
    color: white;
}

.dropdown-menu {
    border: none;
    box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.75);
}

nav>div>a>img {
    justify-self: start;
    width: 8rem;
    margin: 0.25rem;
}

#navbarNavDropdown {
    justify-content: end;
    max-height: 80vh;
    /* overflow-y: auto; */
}

li.nav-item.dropdown:first-child>a {
    color: red;
    /* color: #f8c201;
      text-shadow: 1px 1px 4px #45639f,
      1px -1px 4px #45639f,
      -1px -1px 4px #45639f,
      -1px 1px 4px #45639f */
}

i.bx.bx-menu {
    font-size: 3rem;
}

button.navbar-toggler,
button.navbar-toggler:active,
button.navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

button.navbar-toggler:active {
    color: #53d391;
}

.search-input{
    display: none;
    outline: none;
}
.cart-menu-li{
    cursor: pointer;
}
.cart-menu-li span{
        display: none;
    }

.cart-div{
    right: 135px;
    background-color:white;
    min-width: 350px;
    max-width: 450px;
    border: 1px solid #c7c8c9;
    font-family: var(--title-font-family);
    letter-spacing: 1px;
    font-size: 2rem;
    box-shadow: 0 0 9px 0 rgba(0, 0, 150, 0.1);
    text-transform: uppercase;
    transition: all .5s ease-in;
}
.cart-div>div span{
    display: inline;
    color: black;
}
.cart-div>div>h5,
.cart-div>div>h6{
    font-size: 1.75rem;
}
.cart-div h5,
.cart-div h6{
    font-weight: 400;
    
}
.cart-div h6 span{
    color: #53d391;
}
.cart-div a{
    text-decoration: none;
    border: 2px solid black;
    color: black;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 500;
}
.cart-div a:hover{
    border-color: #53d391;
    color: #53d391;
}
#navbarNavDropdown>.flex-container{
        justify-content: end;
    }

.cart-product-img{
    width: 100px;
}
.cart-product > *{
    padding: 0 .25rem;
}
.cart-product > div > h5{
    color: #53d391;
}
.cart-product > div > h6:nth-last-of-type{
    color: #53d391;
}
i.bx.bx-trash{
    font-size: 1.5rem;
}
i.bx.bx-trash:hover{
    color: red;
    cursor: pointer;
}
@media screen and (max-width:990px) {
    .cart-div{
        display: none;
    }
    #navbarNavDropdown>.flex-container{
        justify-content: start;
        flex-direction: column;
    }
    #navbarNavDropdown>.flex-container>ul:last-of-type{
        order: -1;
    }
    .nav-link {
        padding: 10px
    }

    li.nav-item>a.nav-link:active,
    li.nav-item>a.nav-link:focus,
    li.nav-item>a.nav-link:hover {
        background-color: #53d391;
        color: white;
    }

    nav>div.conatiner-fluid {}

    .search-menu-li{
        order: -3;
    }

    .cart-menu-li{
        order:-2;
    }
    .fb-menu-li{
        order: -1;
        position: absolute;
        left: 175px;
        top: 25px;
    }
    .cart-menu-li:hover>a>i{
        color: white;
    }
    .cart-menu-li span{
        display: block;
        
    }
    .search-input{
        display: block;
        background:transparent;
        padding: .5rem;
        border:none;
    }
    .search-input::placeholder{
        color: #78e6ad;
    }

    .search-menu-li i.bx-search{
        display: block;
        border:none;
        padding: .5rem;
        cursor: pointer;
    }
    li.search-menu-li>a.nav-link:hover{
        background: transparent;
        color: #181f2c;
    }
    .menu-item-box-shadow{
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
    }
    #navbarNavDropdown {
        overflow-y: auto;
    }
    .main-menu-search{
        display: none;
    }
}


/* BOOTSTRAP OVERWRITE */
.dropdown-toggle::after {
    content: none;
}

 .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

i.bx {
    font-size: 1.5em;
    line-height: 1em;
}

.bx-cart {
    color: #50c9e6;
}
.bx-search:hover{
    color: #53d391;
    cursor: pointer;
}

.main-menu-search{

    right: 115px;
    top: 22px;
    box-shadow: 0 0 9px 0 rgba(0, 0, 150, 0.1);    
    border-radius: 20px;
    padding:0 5px;
    
}
.main-menu-search input{
    width: 365px;
}
.main-menu-search input,
.main-menu-search i{
    background-color: #f8f9fa;
    border: none;
    outline: none;
    border-radius: 15px;
    padding: 5px;
}
@media screen and (max-width:1125px){
    div.main-menu-search{
        top: 10px;
    }
}
.main-menu-search input::placeholder{
    color: #53d391;
}

/* MENÜ END */

/* SLIDER START */

.bigger-navigation-icon {
    width: 6vw;
    height: 6vw;
    background-size: cover;
}

/* SLIDER END */

/* SOCIALMEDIA ICONS START */
.social-media-img {
    height: 10vW;
    max-height: 80px;
    margin: 4vw 4vw 0 4vw;
    transition: all .5s;
}

.social-media-img:hover {
    transform: translateY(-5px);

}

/* SOCIALMEDIA ICONS END */

/*TITLE STRAT*/
.title {
    font-family: var(--title-font-family);
    font-size: 3rem;
    color: #322d66;
    line-height: 0.88;
    font-weight: 300;
    letter-spacing: .075em;
    margin-top: 2rem;
}

hr {
    margin: 2rem;
}

/*TITLE END*/

/* MAIN CARD STYLE START*/
.card {
    min-height: 470px;
    max-height: 470px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 100;
    box-shadow: 0 0 9px 0 rgba(0, 0, 150, 0.1);
}
/* Mobil nézet */
@media (max-width: 768px) {
    .card {
        min-height: 400px;
    }
}

.static-article{
    margin-bottom: 10px;
    min-height: 150px;
    overflow-y: auto;

}
.static-article p{
    max-width: 100%;
}


.card>img {
    /*max-height: 50% ;*/
    /*max-height: 29vh ;*/
    max-height:205px;
    object-fit: cover;
    transition: all 0.5s;
}

.card-body{
    display: grid;
}



.card-body>p{
    margin-bottom: 0;
}

.card:hover {
    cursor: pointer;
}

.card>a.btn-details {
    top: 55px;
    opacity: 0;
    background-color: rgb(14, 14, 14, 0.5);
    text-decoration: none;
    color: rgb(83, 211, 145);
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
    width: 70%;
    padding: 30px 0;
}

.card>img:hover~a.btn-details,
.card>img~a.btn-details:hover {
    opacity: 1;
}

.card>img:hover {
    cursor: pointer;
}

.sale-price {
    font-size: larger;
    color: #53d391;
}

.sale-price-outlet {
    font-size: large;
    font-weight: 500;
    color: #53d391;
}

.sale-flag {
    position: absolute;
    z-index: 100;
    top: 1rem;
    right: 0;
    /* background-image: url("https://matrackiraly.hu/images/akcios_cimke_kicsi.png");
    width: 121px;
    height: 37px; */
    font-weight: 600;
    font-size: 1.25rem;
    width: 90px;
    height: 30px;
    clip-path: polygon(10% 50%, 30% 0, 100% 0, 100% 100%, 30% 100%);
    background-color: rgb(219, 1, 1);
    color: white;
    text-align: right;
    vertical-align: middle;
    box-shadow: -4px 4px 10px 3px rgba(0,0,0,1);
    -webkit-box-shadow: -4px 4px 10px 3px rgba(0,0,0,1);
    -moz-box-shadow: -4px 4px 10px 3px rgba(0,0,0,1);
    letter-spacing: 2px;
    padding-right: 2px;
}

.card-price-container {
    display: flex;
    justify-content: space-between;
    vertical-align: bottom;
    font-size: 25px;
    font-weight: 300;
}

.card-text {
    color: black;
    font-weight: 400;
}
.card-body p {
    color: black;
    font-weight: 400;
}

/* MAIN CARD STYLE END*/

/* BRANDS START */


.image-container>div {

    max-width: 150px;
    aspect-ratio: 1;
    align-items: center;
    display: flex;
    opacity: .8;
    transition: all .5s linear;
}

.image-container>div:hover {
    transform: translateY(-10px);
    opacity: 1;
}

/* BRANDS END */

/*FOOTER START*/

footer {
    width: 100%;
}

footer div ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.design-footer {
    background-color: #181f2c;
}

.design-footer span {
    color: #78e6ad;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.design-footer>h5 {
    margin-left: 1rem;
    font-size: 2.5rem;
    opacity: .4;
    font-family: var(--title-font-family);
}

.design-footer input::placeholder,
.design-footer textarea::placeholder,
.design-footer select::placeholder {
    color: white
}

.design-footer input,
.design-footer textarea,
.design-footer select {
    font-size: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
    border: none;
    color: white;
    background: rgba(255, 255, 255, 0.06);
    margin: 10px auto;
}

.design-footer select>option {
    background-color: #181f2c;
    color: white;
}

.design-footer input:active,
.design-footer input:focus,
.design-footer textarea:active,
.design-footer textarea:focus,
.design-footer select:active,
.design-footer select:focus {
    outline: 2px solid #53d391;
    color: white;
    background-color: transparent;
}

footer>div.container-fluid>div.row>div,
footer>div.container-fluid>div.row>div a {

    color: white;
}

footer .nav-link {
    padding: 0px;
}

footer .site-link{
    margin-bottom: 0 !important;
}

footer .footer-health-insurance{
    line-height: 240%;
}

footer li.nav-item>a.nav-link:active,
footer li.nav-item>a.nav-link:focus,
footer li.nav-item>a.nav-link:hover {
    background-color: #53d391;
}

footer a.navlink {
    color: white !important;
}

.send-button {

    border: none;
    outline: none;
    background-color: #53d391;
    color: white;
    width: 100%;
    margin: 25px auto 10px auto;
    display: block;
    min-height: 4rem;
    font-size: 1.25rem;

}

.send-button:hover {
    border-color: black;
    background-color: white;
    color: black;
}

/*FOOTER END*/

/* STICKY START */
#sticky-up-div {
    transition: opacity .5s linear;
}

#sticky-up-div>a {
    max-width: 50px;
    width: 50px;
    aspect-ratio: 1;
    color: #ffffff;
    background: #53d391;
    text-decoration: none;
    font-size: 32px;
    text-align: center;
    overflow-y: hidden;
}

/* STICKY END */

/* ~~~~~~~~~~~~~~~ HOMEPAGE END ~~~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~~ SUBPAGE START ~~~~~~~~~~~~~~~ */

/* ========= SHOPS PAGE START ========= */

.shop-card {
    font-weight: 100;
    box-shadow: 0 0 9px 0 rgba(0, 0, 150, 0.1);
    min-width: 300px;
    max-width: 375px;
}

.shop-icon-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.shop-icon-column p {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
}

.shop-card-header-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
}

/* ========= SHOPS PAGE END ========= */

/* ========= PRODUCT PAGE START ========= */
.product-main-content{
    max-width: 1360px;
}
.product-img {
    max-width: 720px;


}

.product-desc p{
    text-align: justify;

}

.product-desc>h2 {
    font-family: var(--title-font-family);
    font-size: 2.5rem;
}

#product-price-table {
    max-width: 1080px;
    margin: 0 auto;
}

#product-price-table>tbody>tr>td:last-of-type {
    padding: .25rem;

}

#product-price-table button {
    border: none;
    outline: none;
    border: 1px solid #53d391;
    background-color: #53d391;
    color: white;
    width: 100%;
    display: block;

}

#product-price-table button:hover {
    border: 1px solid black;
    background-color: white;
    color: black;

}

#product-price-table th,
#product-price-table td {
    border: 1px solid black;
    border-collapse: collapse;
    text-align: center;
    /* padding: 1rem 2rem 1rem 2rem; */
}

#product-price-table th {
    padding-top: .5rem;
    padding-bottom: .5rem;
}
td.product-table-sale{
    background-color: #FFA54C;
}
td.product-table-full-price{
    /*text-decoration: line-through;*/
}
div.product-qna-content{
    max-width: 1080px;
    margin: 0 auto;
}
.product-qna-form button{
    width: fit-content;
}
.product-qna-form button:hover{
    border: 1px solid #181f2c;
}

.carousel-indicators > div[data-bs-target]{
    text-indent: 0;
    width: fit-content;
    max-width: 80%;
    background-color: transparent;
    display: block;
    position: static;
    border: none;

}

.carousel-indicators > div > img {
    margin-top: 40px;
    width: 100%;
    max-width: 150px;
    min-width: 3.5rem;
    
}
div#carouselExampleIndicators{
    margin-bottom: 150px;
}


.product-discuss .question{
    color: #322d66;
}
.product-discuss .answer{
    color: #53d391;
}
product-main-content .carousel-item>iframe{

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}
.carousel-video-thumbnail{
    
}

/* ========= PRODUCT PAGE END ========= */
/* ========= CATEGORY PAGE START ========= */
.category-main h5,
.category-description h5{
    font-family: var(--title-font-family);
    font-size: 2rem;
}
.category-description p{
    font-family: var(--title-font-family);
    font-size: 1.25rem;
    text-align: justify;
}
/* ========= CATEGORY PAGE END ========= */
/* ========= BLOG PAGE START ========= */

.blog-item-container{
    box-shadow: 0 0 9px 0 rgba(0, 0, 150, 0.1);
    border: 1px solid #c7c8c9;
    border-radius: 5px;
    width: 90%;
    
}
.blog-list-container{
    width: 90%;
}

.blog-list-item{
    width: 80%;
}
@media screen and (max-width:990px) {
    .blog-list-container{
        width: 95%;
    }
    .blog-list-item{
        width: 100%;
    }

}
.blog-list-li{
    box-shadow: 0 0 9px 0 rgba(0, 0, 150, 0.1);
    border: 1px solid #c7c8c9;
    border-radius: 5px;
    min-height: 40px;

}
.blog-list-li>div{
    display: flex;
    justify-content: end;
    align-items: center;
}
.blog-list-li>div>div{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    width: 30px;
    height: 30px;
    text-align: center;
    border: 3px solid #53d391;
    border-radius: 50%;
    
}
.blog-list-li.clearfix>span{
    font-size: 1.4rem;
    vertical-align: middle;
    font-family: var(--title-font-family);
}
/* ========= BLOG PAGE END ========= */

/* ========= CART PAGE START ========= */
.order-information>h5{
    font-family: var(--title-font-family);
    letter-spacing: 2px;
    font-size: 1.5rem;
    text-transform: uppercase;
}
#quantity-input{
    max-width: 50px;
}
#cart-sum-table{
    max-width: 1360px;
    margin: 0 auto;
    overflow-x: scroll;
}
#cart-sum-table>tfoot{
    font-weight: 600;
}
tr>td.tfoot-sum-text{
    color: #53d391;
}
#cart-sum-table tr{
    vertical-align: middle;    
}
#cart-sum-table tfoot tr td{
    padding: .5rem;
}
#cart-sum-table tfoot a{
    text-decoration: none;
    border: 2px solid black;
    color: black;
    font-size: 1rem;    
    font-weight: 500;
    display: block;
    width: fit-content;
    padding: .75rem 1.5rem;
    text-align: center;
}
#cart-sum-table tfoot a:hover{
    border-color: #53d391;
    color: #53d391;
}
@media screen and (max-width:492px){
    .cart-product>div>img{
        display: none;
    }
    #cart-sum-table tfoot a{
        padding: 5px;
    }
}
#order-form-container div>button[type=submit],
#order-form-container div>input.form-check-input:checked{
    background-color: #53d391;
    border-color: #53d391;
}
#order-form-container div>input.form-check-input:focus{
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(83, 211, 145, 0.7);
}
/* ========= CART PAGE END ========= */
/* GYIK */
.gyik-h4{
    text-align: center;
}

@media (max-width: 768px) {
    .main-menu-search {
        display: block !important;
        position: static !important;
        background-color: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .main-menu-search input {
        width: 100% !important;
        border: 1px solid #ccc;
        padding: 6px 10px;
        font-size: 16px;
    }

    .search-menu-li .nav-link,
    .search-menu-li .menu-item-box-shadow {
        display: none !important; /* elrejtjük a nyitó gombot mobilon */
    }
}

.carousel-indicators-thumbs [data-bs-target]{
    width: 84px;                /* fix szélesség */
    height: 84px;               /* fix magasság */
    padding: 0;
    border: 0;
    background: transparent;
    overflow: hidden;           /* kerekítésnél ne lógjon ki */
    border-radius: .5rem;
}



.modal-backdrop.show {
    opacity: 0.9 !important;   /* 90% sötét, szinte teljesen fekete */
}

.blog-item-container p img{
    max-width: 100%;
    height: auto;
}

.blog-list-item .card-body img{
    max-width: 100%;
    height: auto;
}

.price{
    margin-left: auto;
    margin-right: auto;
}

.fade-box {
    height: 120px;
    overflow: hidden;


    mask-image: linear-gradient(
            to bottom,
            black 80%,
            transparent 100%
    );
}
