/* font-size */
:root {
  --main-font-size: 25px;
  --base-size:16px;
  --small-size:12px;

}


/* Fonts */

.streamline-logos--picasa-logo-solid {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M22.431 15.5c.37-1.1.569-2.276.569-3.5c0-3.39-1.534-6.423-3.945-8.44l-2.075 7.08l-.002.007l-1.323 4.853h6.777Zm-.39 1H9.651l1.742 6.484A11 11 0 0 0 22.04 16.5Zm-11.712 6.374l-1.808-6.73l-.003-.012l-1.312-4.811l-5.688 4.024a11.01 11.01 0 0 0 8.81 7.529Zm-9.085-8.56C1.084 13.568 1 12.794 1 12a10.99 10.99 0 0 1 5.01-9.227l5.187 4.218L7.2 10.1zm5.689-12.08l5.38 4.376l3.914 3.044l1.975-6.74A10.95 10.95 0 0 0 12 1c-1.827 0-3.55.446-5.067 1.234' clip-rule='evenodd' stroke-width='0.5' stroke='%23fff'/%3E%3C/svg%3E");
}
.material-symbols-light--star-outline-rounded {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m8.85 16.825l3.15-1.9l3.15 1.925l-.825-3.6l2.775-2.4l-3.65-.325l-1.45-3.4l-1.45 3.375l-3.65.325l2.775 2.425zm3.15-.723l-3.63 2.192q-.16.079-.297.064q-.136-.016-.265-.094q-.13-.08-.196-.226t-.012-.319l.966-4.11l-3.195-2.77q-.135-.11-.178-.263t.019-.293t.165-.23q.104-.087.28-.118l4.216-.368l1.644-3.892q.068-.165.196-.238T12 5.364t.288.073t.195.238l1.644 3.892l4.215.368q.177.03.281.119q.104.088.166.229q.061.14.018.293t-.178.263l-3.195 2.77l.966 4.11q.056.171-.011.318t-.197.226q-.128.08-.265.095q-.136.015-.296-.064zm0-3.852' stroke-width='0.5' stroke='%23fff'/%3E%3C/svg%3E");
}


/* Icon Fonts END */

.main {
    width: 100%;
    overflow: hidden;
}


/* Product Box */
.productBox {
    background: #1D212D;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #252E4A;
}
.productBox a{
    text-decoration: none;
}
.productBox:hover {
    border: 1px solid #BA1EFF;
}
.productBox.active{
    border: 1px solid #BA1EFF;
}

.productBox figure {
    margin: 0;
}
.productBox span {
    color: #fff;
    display: block;
    margin: 5px 0px;
    font-size: 20px;
}
.outline_text {
    color: white; 
  /* -webkit-text-stroke: 1px gray;  */
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
  display: block;
  margin-top: 4px;
}

.transformation {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 50px;
    background: linear-gradient(90deg, #D9D9D9 0%, rgba(29, 33, 45, 0.10) 100%);
    padding: 2px 12px 2px 8px;
}
.transformation span {
    width: 18px;
    height: 18px;
    color: #fff;
    margin: 0;
}

.favorite {
    width: 30px;
    height: 30px;
    background: #97A0B4;
    border-radius: 50px;
}
.favorite span {
    width: 25px;
    margin: 0px auto;
    line-height: 50px;
    display: block;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
}

.card_container .swiper-pagination{
	position: inherit !important;
}

.Boxheight, .productBox figure {
    height: 320px;
    text-align: center;
}
.Boxheight img, .productBox figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Boxheight .product_image_box{
    height: 100%;
    overflow: hidden;
}
.productBox .Boxheight .swiper-slide{
    height: auto;
}
.custom_arrow .swiper-button-next, .custom_arrow .swiper-button-prev {
    width: 35px;
    height: 35px;
    background: #000000a6;
}
.custom_arrow .swiper-button-next:after, .custom_arrow .swiper-button-prev:after {
    font-size: 20px;
    color: #ffffff;
}
.custom_arrow .swiper-button-next{
	right: -20px !important;
}
.custom_arrow .swiper-button-prev{
	left: -20px !important;
}



@media (max-width: 640px) {
    /* .Boxheight, .productBox figure{
        height: 100%;
    } */
    .Boxheight img, .productBox figure img{
        width: 100%;
    }
    .productBox span {
        font-size: 14px;
    }
    .base-size-mobile{
        font-size: var(--base-size);
        line-height: 26px;
        font-weight: 400;
    }


}