body{
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    line-height: normal !important;
}
/*header {
    z-index: 999999;
    position: sticky;
} */
.breadcrumb a, .breadcrumb>li+li::before {
    content: "\f105";
    font-size: 14px;
}

.breadcrumb>li+li::before {
    color: #000;
    content: "\f105";
    font-family: 'Font Awesome 5 Pro';
    padding: 0 2rem;
}

.breadcrumbs {
    padding: 1rem;
    display: flex;
    width: 100%;
}


.breadcrumbs ul.breadcrumb li > a {
    color: #333E48 !important;
    font-size: 14px;
}

.menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
}

.menu-overlay.active-overlay {
    opacity: 1;
    visibility: visible;
}


.header-banner-container {
    background: #000;
    padding: .8rem 0;
}

.header-top {
    background: #F15927;
}

.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0.6rem 0; */
}

.header-top-container .header-top-left {
    display: flex;
    width: 67%;
    align-items: center;
    /* padding: 0.6rem 0; */
    height: 42px;
}

.header-top-container .header-top-left .header-top-left-end > ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
}

.header-top-container .header-top-right {
    width: 33%;
    display: flex;
    height: 42px;
}

.header-top-container .header-top-right > ul {
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-top-container .header-top-left .header-top-left-start > span {
    padding: 1rem;
    background: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 12px;
    color: #000;
}

.header-top-container .header-top-left .header-top-left-end {
    width: 65%;
    margin-left: 3rem;
}

.header-top-container .header-top-left .header-top-left-start {
    height: 100%;
    display: flex;
    align-items: end;
    width: 35%;
}

.header-top-container .header-top-left .header-top-left-end > ul > li {}

.header-top-container .header-top-left .header-top-left-end > ul > li > a {
    color: #fff;
    font-size: 12px;
}

.header-top-container .header-top-left .header-top-left-end > ul > li:not(:last-child) {
    margin-right: 1rem;
}

.header-top-container .header-top-right > ul > li {
    display: flex;
    color: #000;
    width: 33.3%;
    position: relative;
    height: 100%;
    align-items: center;
}

.header-top-container .header-top-right > ul > li > a {
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    position: relative;
}

.header-top-container .header-top-right > ul > li:not(:last-child) {
    /* margin-right: 2rem; */
}

.header-top-container .header-top-left .header-top-left-end > ul > li > a > i {
    font-size: 14px;
    margin-right: .5rem;
}

.header-top-container .header-top-right > ul > li > a > i {
    font-size: 13px;
    margin-right: 0.5rem;
}
.header-top-container .header-top-right > ul > li:not(:last-child)::after {
    content: "";
    height: 12px;
    width: 1px;
    background: #E5B919;
    position: absolute;
    right: 26px;
    top: 15px;
}
.header-top-container .header-top-right > ul > li:nth-child(3) > a {
    margin-right: .5rem;
}

.header-top-container .header-top-right > ul > li:nth-child(3) > a:nth-child(2) {
    margin-right: 0;
    margin-left: .5rem;
}
.header-top-container .header-top-right > ul > li.account-li {
    position: relative;
}

.header-top-container .header-top-right > ul > li.account-li .exit-account-content {
    z-index: 999;
    position: absolute;
    background: #fff;
    top: 35px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 100%;
    border-radius: 10px;
    left: -15px;
    opacity: 0;
    visibility: hidden;
    border: 2px solid #fff;
    transition: .3s ease;
}

.header-top-container .header-top-right > ul > li.account-li .exit-account-content > a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.header-top-container .header-top-right > ul > li.account-li .exit-account-content:hover {
    background: #f15927;
}

.header-top-container .header-top-right > ul > li.account-li .exit-account-content:hover > a {
    color: #ffff;
}

.header-top-container .header-top-right > ul > li.account-li:hover .exit-account-content {
    opacity: 1;
    visibility: visible;
}


/*side-menu-button-css*/
.header-bottom .header-bottom-side-menu > button{
    /* padding:5px 10px; */
    background:none;
    border:none;
    position:relative;
    height:40px;
    /* width:60px; */
    cursor:pointer;
    outline:none;
    width: 100%;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .line{
    position:absolute;
    height:2px;
    width:40px;
    background:black;
    /* left:10px; */
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    -ms-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    transition: 0.2s all ease;
  }
  .line-t{
    top: 0;
  }
  .line-m{
    top: 6px;
  }
  .line-b{
    top: 12px;
  }
  
  .header-bottom .header-bottom-side-menu > button:hover .line{
    /* background:#999; */
  }
  .menu-on .line-m, .menu-on:hover .line-m{
    background:rgba(0,0,0,0);
  }
  .menu-on .line{
    top: 6px;
  }
  .menu-on .line-t{
    -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  }
  .menu-on .line-b{
    -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  }
/*side-menu-button-css-end*/

.header-bottom {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 !important;
}

.header-bottom .header-bottom-logo {
    width: 12%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bottom .header-bottom-logo > a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bottom .header-bottom-logo > a > img {
    width: 100%;
}

.header-bottom .header-bottom-side-menu {
    width: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.header-bottom .header-bottom-side-menu > button > span {
    font-size: 12px;
    width: 20px;
}

.header-bottom .header-bottom-search {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bottom .header-bottom-search .search-container {
    width: 100%;
}

.header-bottom .header-bottom-search .search-container div#search {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.header-bottom .header-bottom-search .search-container div#search > input {
    border: 2px solid !important;
    border-top-left-radius: 6.1875rem;
    border-bottom-left-radius: 6.1875rem;
    border-color: #f15927 !important;
    height: 38px;
    width: 90%;
}

.header-bottom .header-bottom-search .search-container div#search button#searchButton {
    background-color: #f15927 !important;
    border-color: #f15927 !important;
    border-top-right-radius: 6.1875rem;
    border-bottom-right-radius: 6.1875rem;
    position: absolute;
    right: 0;
    top: 0;
    height: 38px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-bottom .header-bottom-search .search-container div#search button#searchButton > i {
    color: #fff;
    font-size: 17px;
}

.not-found-page-search .search-container div#search2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.not-found-page-search .search-container div#search2 > input {
    border: 1px solid #ddd;
    padding: 2.2rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    width: 86%;
}

.not-found-page-search .search-container div#search2 button#searchButton {
    position: relative;
    width: 13%;
    height: 45px;
    border: 1px solid #f15927;
    border-radius: 25px;
    background: #f15927 !important;
}

.not-found-page-search .search-container div#search2 button#searchButton > i {
    color: #fff;
}

.not-found-page-search .search-container div#search2 button#searchButton:hover {
    background: #333E48 !important;
    border-color: #333E48;
}

.not-found-page-search .search-container div#search2 button#searchButton:hover > i {
    color: #fff !important;
}

.header-bottom-links {
    display: flex;
    width: 27%;
}

.header-bottom-links > ul {
    padding-left: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 0;
}

.header-bottom-links > ul > li > a {
    font-size: 13px;
}

.header-bottom .header-bottom-coupons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12%;
}
.header-bottom .header-bottom-coupons > a {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.header-bottom .header-bottom-wish-cart {
    display: flex;
    width: 13%;
    justify-content: end;
}

.header-bottom .header-bottom-wish-cart > ul.shortMenu {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
}

.header-bottom .header-bottom-wish-cart > ul.shortMenu > li {}

.header-bottom .header-bottom-wish-cart > ul.shortMenu > li > a {
    font-weight: 600;
    font-size: 14px;
}

.header-bottom .header-bottom-wish-cart > ul.shortMenu > li > a > i {}

.header-bottom .header-bottom-wish-cart > ul.shortMenu > li:not(:last-child) {
    margin-right: 2rem;
}

.header-bottom .header-bottom-wish-cart > ul.shortMenu > li:nth-child(2) {
    position: relative;
}

.header-bottom .header-bottom-wish-cart > ul.shortMenu > li:nth-child(2) > a > i {
    margin-right: .8rem;
}

.header-bottom .header-bottom-wish-cart > ul.shortMenu > li:nth-child(2) .cartItems {
    top: 7px;
    margin-left: 0;
    left: 14px;
}

.header-bottom .header-bottom-wish-cart > ul.shortMenu > li:nth-child(2) > a {
    font-weight: 700;
}
.header-bottom .header-bottom-coupons > a > span {
    color: #0077D0;
    font-weight: 700;
    font-size: 13px;
}
.header-menu-container {box-shadow: 0px 4px 5.88px 0.12px rgba(0, 0, 0, 0.12);}
.header-menu {
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
}

.header-menu nav.navbar-default {
    width: 100%;
}

.header-menu .responsive {
    width: 100%;
    margin: 0;
    height: 100%;
}

.header-menu nav.navbar-default .container-megamenu {
    width: 100%;
}

.header-menu nav.navbar-default .megamenu-wrapper {
    width: 100%;
    background: #fff;
}

.header-menu nav.navbar-default .megamenu-wrapper .megamenu-pattern {
    width: 100%;
}

.header-menu nav.navbar-default .megamenu-wrapper .megamenu-pattern ul.megamenu {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header-menu nav.navbar-default .megamenu-wrapper .megamenu-pattern ul.megamenu > li {
}

.header-menu nav.navbar-default .megamenu-wrapper .megamenu-pattern ul.megamenu > li > a {
    color: #333E48;
    font-size: 13px;
    padding: 0;
    text-transform: none;
    transition: .3s ease;
    background: #fff !important;
}

.header-menu nav.navbar-default .megamenu-wrapper .megamenu-pattern button.expand-submenu {
    display: none;
}

.header-menu nav.navbar-default .megamenu-wrapper .megamenu-pattern ul.megamenu > li > a::after {
    display: none;
}

.header-menu nav.navbar-default .megamenu-wrapper .megamenu-pattern ul.megamenu > li:not(:last-child) {
    margin-right: 2rem;
}

.header-menu nav.navbar-default .megamenu-wrapper .megamenu-pattern ul.megamenu > li > a > i {
    font-size: 17px;
    margin-right: .5rem;
}

.header-menu nav.navbar-default .megamenu-wrapper .megamenu-pattern ul.megamenu > li > a:hover {
    background: #fff;
    color: #13171B;
}

/*header-fixed-menu*/
.mobil-mini-category{
    display: none;
}
span#remove-megamenu {
    display: none;
}
.header-fixed-left-menu-container {
    position: fixed;
    left: 0;
    z-index: 9999999;
    width: 18%;
    top: 0;
    height: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    justify-content: space-between;
    /* overflow: auto; */
}

.fixed-menu-active{
    display: flex;
}

.header-fixed-left-menu-container ul.megamenu {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.header-fixed-left-menu-container .megamenu-wrapper {
    width: 100%;
    background: #fff !important;
}

.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern {
    width: 100%;
}

.header-fixed-left-menu-container .responsive {
    width: 100%;
    display: flex;
    margin-bottom: 0;
    overflow: hidden;
    overflow-y: auto;
}

.header-fixed-left-menu-container .responsive .container-megamenu {
    width: 100%;
}

.header-fixed-left-menu-container .responsive .navbar-default {
    width: 100%;
}

.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern .container {
    display: flex;
}

.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern .container ul.megamenu {}

.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern .container ul.megamenu li:hover {
    background: none;
}
.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern .container ul.megamenu li:hover > a {
    background: none;
}

.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern .container ul.megamenu li > a {
    color: #333E48;
    padding: 0;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    background: none;
}

.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern .container ul.megamenu li > a::after {
    font-family: 'Font Awesome 5 Pro';
}

.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern .container ul.megamenu li > a > i {
    font-size: 18px;
    margin-right: 1rem;
}

.fixed-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-menu-logo > a {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.fixed-menu-logo > a > img {
    width: 60%;
}

.fixed-menu-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

.fixed-menu-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.fixed-menu-bottom > img {
    width: 80%;
}

.fixed-menu-bottom > ul {
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.fixed-menu-bottom > ul > li {}

.fixed-menu-bottom > ul > li > a {
    font-size: 10px;
}

.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern .container ul.megamenu li > a:hover {
    background: none;
}
.fixed-menu-top li.with-sub-menu.active-show {
    position: relative !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    flex-direction: column;
}

.fixed-menu-top .sub-menu {
    position: relative !important;
    top: 0 !important;
}

.fixed-menu-top .sub-menu .content {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border: 0;
    border-bottom: 1px solid #ddd;
    /* display: none; */
    padding: 0 !important;
}
.active-content{
    display: block !important;
}
.fixed-menu-top li.with-sub-menu {
    position: relative !important;
    float: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-transition: padding 0.3s ease-in-out;
    -o-transition: padding 0.3s ease-in-out;
    transition: padding 0.3s ease-in-out;
}
.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern .container ul.megamenu li > a::after {
    display: none;
}

button.expand-submenu {
    padding: 0;
    position: absolute;
    width: 44px;
    height: 44px;
    right: 0;
    border: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
    height: 30px;
    padding-left: 0.2rem;
    padding-right: 1rem;
    top: 7px;
}
.fixed-menu-top .sub-menu .content .categories.mb-20 {
    margin: 0 !important;
}

.fixed-menu-top .sub-menu .content  .menu {
    height: 130px;
    overflow: auto;
}

.fixed-menu-top .sub-menu .content  .menu > ul > li {}

.fixed-menu-top .sub-menu .content  .menu > ul > li > a {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: none !important;
    font-size: 13px !important;
    color: #7F8A96 !important;
    font-weight: 500 !important;
}

.fixed-menu-top .sub-menu .content .menu > ul {
    padding-left: 2rem !important;
    position: relative;
}

.fixed-menu-top .sub-menu .content .menu > ul::before {
    position: absolute;
    content: "";
    left: 5px;
    height: 100%;
    width: 2px;
    background: #f15927;
    top: -4px;
}

.header-fixed-left-menu-container .megamenu-wrapper .megamenu-pattern .container ul.megamenu li > a:not(:first-child) {
    margin-top: 1rem;
}
/*header-fixed-menu-end*/

/*home-slider*/
.home-container {
    display: flex;
    flex-direction: column;
    background-image: url(/image/catalog/birtemp/slider-arka.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    gap: 2rem;
}

.home-sliders-tab-summary {
    display: flex;
    padding-top: 3rem;
    position: relative;
}

.home-sliders-tab-summary .home-sliders {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent {
    width: 80%;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item {background: unset;}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item .home-slider-display {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item .home-slider-display .home-slider-text {
    display: flex;
    flex-direction: column;
    width: 40%;
    justify-content: center;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item .home-slider-display .home-slider-image {
    width: 60%;
    display: flex;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item .home-slider-display .home-slider-image > img {
    width: 100%;
}

.home-sliders-tab-summary .home-sliders .home-slider-tab-list {
    width: 17%;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item .home-slider-display .home-slider-text > span:nth-child(1) {
    font-size: 53px;
    display: flex;
    text-transform: uppercase;
    font-weight: 700;
    color: #333E48;
    height: 58px;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item .home-slider-display .home-slider-text > span:nth-child(2) {
    font-size: 40px;
    text-transform: uppercase;
    /* line-height: 64px; */
    font-weight: 200;
    color: #333E48;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item .home-slider-display .home-slider-text > span {
    line-height: normal;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item .home-slider-display .home-slider-text > span:nth-child(3) {
    font-size: 19px;
    display: flex;
    font-weight: 800;
    color: #333E48;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item .home-slider-display .home-slider-text > span:nth-child(3) > p {
    font-weight: 500;
}

.home-sliders-tab-summary .home-sliders .home-slider-imagecontent .tab-tab-item .home-slider-display .home-slider-text > a {
    padding: .8rem 2rem;
    background: #f15927;
    width: fit-content;
    border-radius: 9px;
    margin-top: 2rem;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 15px;
}
.home-sliders-tab-summary .home-sliders .home-slider-tab-list .tab-menu-items {background: #fff;box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;border-radius: 5px;}



.home-sliders-tab-summary .home-sliders .home-slider-tab-list .tab-menu-items .tab-menu-item {padding: 1rem;width: 100%;cursor: pointer;}

.home-sliders-tab-summary .home-sliders .home-slider-tab-list .tab-menu-items .tab-menu-item > p {
    font-size: 13px;
    font-weight: 400;
}

.home-sliders-tab-summary .home-sliders .home-slider-tab-list .tab-menu-items .tab-menu-item.tab-menu-item-active {
    background: #f15927;
    position: relative;
}

.home-sliders-tab-summary .home-sliders .home-slider-tab-list .tab-menu-items .tab-menu-item.tab-menu-item-active::before {
    content: " ";
    display: block;
    border-top: 20px solid transparent;
    border-right: 20px solid #f15927;
    border-bottom: 18px solid transparent;
    position: absolute;
    top: 0;
    right: 100%;
    height: 37.6px;
}

.home-sliders-tab-summary .home-sliders .home-slider-tab-list .tab-menu-items .tab-menu-item.tab-menu-item-active > p {
    color: #fff;
    font-weight: 700;
}

.tab-menu-item {
}

.tab-menu-item p {
    margin: 0;
}

.tab-fase {
    font-size: 15px;
    color: #000;
    margin: 0 !important;
}

.tab-content {
    z-index: 9;
}

/* .tab-content img {
    box-shadow: 0 5px 130px 0 rgba(0, 0, 0, .1);
    width: 100%;
} */

.tab-tab-item:first-child {
    top: 0;
}


.tab-tab-item {
    display: none;
    /* visibility: hidden; */
    /* opacity: 0; */
    top: 300px;
    position: relative;
    width: 100%;
    transition: 1s;
    /* transform: translateY(100px); */
    animation: fadeIn 1s ease 1 forwards;
    -webkit-animation: fadeIn 1s ease 1 forwards;
    -moz-animation: fadeIn 1s ease 1 forwards;
    -o-animation: fadeIn 1s ease 1 forwards;
    opacity: 0;
}

.w-p-active-tab-item {
    display: inline-block;
    visibility: visible;
    top: 0;
    transition: 1s;
}

.w-p-in-active-tab-item {
    display: none;
    top: 300px;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
}

.tab-content-text {
    position: absolute;
    bottom: -200px;
    right: -40px;
    background: white;
    padding: 40px;
    width: 80%;
    box-shadow: 0 5px 130px 0 rgba(0, 0, 0, .1);
    border-radius: 10px;
    animation: fadeIn 1.5s ease 1 forwards;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -o-transform: translateY(100px);
}

.tab-content-text h3 {
    margin-top: 0;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

@-moz-keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

@-o-keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

.tab-menu-item-active {
}
/*home-slider-end*/

/*featured*/
.swiper-button-prev:before,.swiper-button-prev:after,.swiper-button-next:before,.swiper-button-next:after {
    opacity:0;
 }
 
 .swiper-button-prev > i, .swiper-button-next > i {
     font-size: 23px;
 }
 .product-wrapper {
    padding-bottom: 67px;
}

.product-wrapper .swiper-wrapper {}

.product-wrapper .swiper-wrapper .product-wrap {
    background: #fff;
    padding: 1rem 1.2rem;
    border-radius: 5px;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.product-tab-wrapper .swiper-wrapper .product-wrap {
    background: #fff;
    position: relative;
    /* padding: 1rem; */
}

.product-container {
    padding-top: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.product-wrapper .swiper-wrapper .product-wrap .product-name {
    margin: .5rem 0;
    min-height: auto;
    margin-bottom: 1.5rem;
}
.product-tab-wrapper .swiper-wrapper .product-wrap .product-name {
    margin: 0;
    min-height: auto;
}

.product-wrapper .swiper-wrapper .product-wrap .product-name > a {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow:hidden;
    color: #0077d0;
    font-weight: 700;
    height: 28px;
}
.product-tab-wrapper .swiper-wrapper .product-wrap .product-name > a {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow:hidden;
    color: #0077d0;
    font-weight: 700;
}

.product-wrapper .swiper-wrapper .product-wrap .product-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}
.product-tab-wrapper .swiper-wrapper .product-wrap .product-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 1rem 0; */
    padding-bottom: 1rem !important;
}

.product-wrapper .swiper-wrapper .product-wrap .product-image > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination4 {
    display: flex;
    justify-content: center;
    padding-top: 3rem;
}

.swiper-pagination4 span.swiper-pagination-bullet-active {
    width: 30px;
    background: #f15927 !important;
}

.swiper-pagination4 > span {
    background: #ddd !important;
    box-shadow: none !important;
    height: 8px;
    width: 8px;
}

.product-tab-wrapper .swiper-wrapper .product-wrap .product-image > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-wrapper .swiper-wrapper .product-wrap .product-image > a > img {
    width: 100%;
}
.product-tab-wrapper .swiper-wrapper .product-wrap .product-image > a > img {
    width: 100%;
}

.product-wrapper .swiper-wrapper .product-wrap .product-price-and-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-tab-wrapper .swiper-wrapper .product-wrap .product-price-and-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem !important;
}

.product-wrapper .swiper-wrapper .product-wrap .product-price-and-cart .product-price {}

.product-wrapper .swiper-wrapper .product-wrap .product-price-and-cart .product-price > p.price {
    color: #38434D;
}
.product-tab-wrapper .swiper-wrapper .product-wrap .product-price-and-cart .product-price > p.price {
    color: #38434D;
}

.product-wrapper .swiper-wrapper .product-wrap .product-price-and-cart .product-price > p.price span.price-old {
    font-size: 11px;
    text-decoration: unset;
}
.product-tab-wrapper .swiper-wrapper .product-wrap .product-price-and-cart .product-price > p.price span.price-old {
    font-size: 11px;
    text-decoration: unset;
}

.product-wrapper .swiper-wrapper .product-wrap .product-price-and-cart .product-cart {}

.product-wrapper .swiper-wrapper .product-wrap .product-price-and-cart .product-cart > button {
    background: #0077d0;
    border: none;
    width: 33px;
    height: 33px;
    display: flex;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    align-items: center;
    justify-content: center;
}
.product-tab-wrapper .swiper-wrapper .product-wrap .product-price-and-cart .product-cart > button {
    background: #0077d0;
    border: none;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-reviews {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    /* border-top: 1px solid #ddd; */
    padding-top: .8rem;
    opacity: 0;
    visibility: hidden;
    /* transition: .1s; */
    position: absolute;
    left: 0;
    right: 0;
}

.product-wrapper .swiper-wrapper .product-wrap:hover .product-reviews {opacity: 1;visibility: visible;width: 100%;border-radius: 0;border-bottom-left-radius: 0.5rem;border-bottom-right-radius: 0.5rem;background-color: #fff;margin: 0;height: initial;padding: 1rem;top: 100%;}
.product-tab-wrapper .swiper-wrapper .product-wrap:hover .product-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-wrapper .swiper-wrapper .product-wrap:hover {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.product-tab-wrapper .swiper-wrapper .product-wrap:hover {
}

.product-wrapper .swiper-wrapper .product-wrap:hover .product-reviews .product-review-read {
    color: #f15927;
    padding-top: .8rem;
    font-weight: 600;
}
.product-tab-wrapper .swiper-wrapper .product-wrap:hover .product-reviews .product-review-read {
    color: #f15927;
    /* padding-top: .8rem; */
    font-weight: 600;
}

.product-container .product-swiper-prev {
    left: -20px;
}
.product-container .product-swiper-next {
    right: -20px;
}


.product-container .product-swiper-prev i, 
.product-container .product-swiper-prev i::before, 
.product-container .product-swiper-next i,
.product-container .product-swiper-next i::before{
    display: flex;
    align-items: center;
    justify-content: center;
}


.product-container .product-swiper-prev, 
.product-container .product-swiper-next {
    position: absolute;
    top: calc(50% - 25px);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(254, 215, 0, 0.8);
    color: #fff;
    opacity: .8;
    transition: all .2s ease;
    z-index: 9;
    border: none;
}

.product-container .product-swiper-prev:hover, 
.product-container .product-swiper-next:hover {
    background-color: #f15927;
    opacity: 1;
}
.product-reviews::before {
    position: absolute;
    border: .5px solid #eee;
    top: -2px;
    content: "";
    width: 80%;
    left: 9%;
}
.product-review-read > a {
    color: #f15927;
}
/*featured-end*/

/*muti-banner*/
.home-multi-bannes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
    margin-bottom: 2rem;
    gap: 2rem;
}

.home-multi-bannes-container .home-muti-banner {width: calc(33.3% - (2rem * 2)/3);display: flex;justify-content: center;align-items: center;}

.home-multi-bannes-container .home-muti-banner:not(:nth-child(3n)) {
    /* margin-right: 2rem; */
}

.home-multi-bannes-container .home-muti-banner > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-multi-bannes-container .home-muti-banner > a > img {
    width: 100%;
}

.home-multi-bannes-container::before, .home-multi-bannes-container::after {
    display: none;
}
/*muti-banner-end*/

/*featured-tab-product*/
.web-pageheader {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.featured-change-bottom {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}
.featured-chance-container .web-pageheader {
    margin-bottom: 3rem;
}

.featured-change-product-content {
    width: calc(28% - 2rem);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #f15927;
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
}

.featured-change-product-right {
    width: calc(73% - 1rem);
}
.product-tab-wrapper .swiper-wrapper .product-wrap .product-reviews {
    z-index: 9;
}
.featured-change-tab-title .nav-tabs {
    margin: 0;
    border: none;
    width: 100%;
    display: flex;
    justify-content: center;
}
.featured-change-tab-title .nav-tabs li.active > a {border: none !important;background: #f15927;color: #fff;font-weight: 700;cursor: pointer;}


.featured-change-tab-title .nav-tabs li > a {
    line-height: initial;
    padding: 4px 20px;
    border-radius: 15px;
    font-size: 13px;
    color: #7b8186;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}



.web-pageheader-title {
    display: flex;
    align-items: center;
}

.web-pageheader-title > span {
    font-size: 20px;
    color: #000;
}

.featured-chance-container {
    margin-top: 6rem;
    margin-bottom: 2rem;
}

.web-pageheader::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    width: 16%;
    background: #f15927;
    bottom: -1px;
}

.featured-change-tab-title .nav-tabs li > a:hover {
    border: none;
    background: none;
    color: #7b8186;
}

.featured-change-tab-title .nav-tabs li.active > a:hover {
    border: none !important;
    background: #f15927;
    color: #fff;
    font-weight: 700;
}

.featured-change-tab-title {
    width: 65%;
}

.featured-change-tab-title .nav-tabs > li {
    width: fit-content;
}
.featured-deals-of-the-day-link {
    display: flex;
    justify-content: center;
    align-items: center;
}
.featured-change-product-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-change-product-title > span:nth-child(2) {
    background: #f15927;
    color: #fff;
    height: 65px;
    width: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem;
    line-height: 0;
    font-size: 11px;
}

.featured-change-product-title > span:nth-child(2) > p {
    width: 100%;
    text-align: center;
    margin: 0;
    /* line-height: 0; */
    font-size: 17px;
    font-weight: 700;
}

.featured-change-product-title > span {
    font-size: 19px;
    color: #333e48;
}

.featured-change-product-content > div {
    width: 100%;
}

.featured-change-product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.featured-change-product-image > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-change-product-image > a > img {
    width: 100%;
}

.featured-change-product-informations {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.featured-change-product-name {}

.featured-change-product-informations > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.featured-change-product-name > a {
    font-size: 13px;
    color: #0077D0;
    font-weight: 700;
}

.featured-change-product-price {
    flex-direction: unset !important;
    gap: 1rem;
}

.featured-change-product-price span.old-price {
    color: #000;
    text-decoration: line-through;
    font-size: 16px;
}

.featured-change-product-price span.new-price {
    font-size: 22px;
    color: #EE0000;
    font-weight: 600;
}

.featured-change-remainder-sold {
}

.featured-change-remainder-sold-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.featured-change-remainder-sold-title > span {
    color: #000;
}

.featured-change-rounded-back {
    width: 100%;
    height: 15px;
    background: #ddd;
    border-radius: 20px;
    margin-top: 1rem;
}

.featured-change-rounded-back > span {
    display: flex;
    width: 89%;
    height: 15px;
    background: #f15927;
    border-radius: 20px;
}

.featured-change-remaining-time-content {
    flex-direction: unset !important;
    justify-content: space-evenly !important;
}

.featured-change-remaining-time {
    width: 70%;
}

.featured-change-remaining-time .featured-change-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.featured-change-remaining-time-title {
    width: 30%;
}

.featured-change-remaining-time-title > span {
    font-size: 13px;
    color: #000;
    line-height: 20px;
}
.product-tab-wrapper {
    padding: 1rem;
    padding-bottom: 52px;
    height: auto;
}

.product-tab-wrapper .swiper-wrapper .product-wrap::after {
    content: "";
    height: 86%;
    width: .5px;
    background: #EAEAEA;
    position: absolute;
    right: 0;
    top: 6%;
}
.product-tab-wrapper .swiper-wrapper .product-wrap:hover .product-item {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 100%;
    box-shadow: 0px 0px 6px 0px rgba(1, 1, 1, 0.3);
    background-color: #fff;
    z-index: 1;
    /* padding: 1rem; */
    left: 0;
}

.product-tab-wrapper .swiper-wrapper .product-wrap .product-reviews {
    position: unset;
    display: none;
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 0 !important;
    border-top: 1px solid #ddd;
    padding-top: 1rem !important;
}
.product-tab-wrapper .swiper-wrapper .product-wrap .product-item {cursor: pointer;padding: 1rem;}

.product-tab-wrapper .swiper-wrapper .product-wrap .product-item > div {
    padding: 1rem 1rem 0 1rem;
}

.product-tab-wrapper .swiper-wrapper .product-wrap .product-price-and-cart .product-price > p.price span.price-new {
    font-size: 15px;
}

.featured-change-product-right .tab-content {
    height: 100%;
}

.featured-change-product-right .tab-content .tab-pane {
    height: 100%;
}
.featured-change-remaining-time .featured-change-box .featured-change-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.featured-change-remaining-time .featured-change-box .featured-change-card .counter {
    background: #ddd;
    padding: 1rem;
    border-radius: 7px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    color: #000;
}

.featured-change-remaining-time .featured-change-box .featured-change-card span.denoters {
    font-size: 11px;
    text-transform: uppercase;
    color: #000;
    padding-top: .5rem;
    font-weight: 600;
}

.product-tab-wrapper .swiper-wrapper .product-wrap .product-item .product-category-title > a {
    font-size: 10px;
    color: #A3A3A3;
    font-weight: 600 !important;
}
.product-tab-wrapper .swiper-pagination span {
    background: #ddd !important;
    box-shadow: none !important;
    height: 8px;
    width: 8px;
}

.product-tab-wrapper .swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    background: #f15927 !important;
}
/*featured-tab-product-end*/

/*featured-build3*/
.featured-build3-container .web-pageheader {
    margin-bottom: 1rem;
}
.featured-change-products {
    overflow: hidden;
    width: 100%;
}
.product-build3-wrapper {
    padding: 1rem;
    padding-bottom: 52px;
}

.product-build3-wrapper .swiper-wrapper {}

.product-build3-wrapper .swiper-wrapper .product-wrap {
    background: #fff;
    position: relative;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item {
    cursor: pointer;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item > div {
    padding: 1rem 1rem 0 1rem;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-category-title > a {
    font-size: 10px;
    color: #A3A3A3;
    font-weight: 600 !important;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-name {
    margin: 0;
    min-height: auto;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-name > a {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0077d0;
    font-weight: 700;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 1rem 0; */
    padding-bottom: 1rem !important;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-image > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-image > a > img {
    width: 100%;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-price-and-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem !important;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-price-and-cart .product-cart > button {
    background: #0077d0;
    border: none;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-reviews {
    position: unset;
    display: none;
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 1rem !important;
    border-top: 1px solid #ddd;
}

.product-build3-wrapper .swiper-wrapper .product-wrap:hover .product-item .product-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-tab-wrapper .swiper-wrapper .product-wrap .product-reviews::before {
    display: none;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-reviews::before {
    display: none;
}
.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-price-and-cart .product-price .price > .price-new {
    color: #000;
}

.product-build3-wrapper .swiper-wrapper .product-wrap:hover .product-item {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 100%;
    box-shadow: 0px 0px 6px 0px rgba(1, 1, 1, 0.3);
    background-color: #fff;
    z-index: 1;
    /* padding: 1rem; */
    left: 0;
}

.product-build3-wrapper .swiper-wrapper .product-wrap .product-item .product-reviews .product-review-read {
    color: #f15927;
    /* padding-top: 0.8rem; */
    font-weight: 600;
}
.product-build3-wrapper .swiper-pagination2 > span {
    background: #ddd !important;
    box-shadow: none !important;
    height: 8px;
    width: 8px;
}
.product-build3-wrapper .swiper-pagination2 .swiper-pagination-bullet-active {
    width: 30px;
    background: #f15927 !important;
}

.swiper-pagination2 {
    position: absolute;
    left: 47% !important;
    bottom: -2px !important;
    z-index: 999;
}

.featured-build3-container.container {
    margin-bottom: 1rem;
}


/*featured-build3-end*/

/*home-single-banner*/
.home-single-banner {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-single-banner .home-single-banner-text {
    position: absolute;
    left: 3%;
    display: flex;
    align-items: center;
    top: 42%;
    gap: 1rem;
    justify-content: space-between;
}


.home-single-banner .home-single-banner-image > img {
    width: 100%;
}

.home-single-banner-container {
    margin-bottom: 1rem;
}

.home-single-banner .home-single-banner-text > span:nth-child(1) {
    font-size: 30px;
    color: #fff;
    width: 73%;
    display: flex;
    gap: 1rem;
}
.home-single-banner .home-single-banner-text > span:nth-child(1) > p {
    margin: 0;
    font-weight: 800;
}

.discount-chance {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #f15927;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 13px;
    font-style: italic;
    width: 23%;
}

.discount-chance > p {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    margin-right: .5rem;
    font-style: normal;
}

.discount-chance > p > span {}

.discount-chance > span {
    width: 100%;
    display: flex;
    justify-content: center;
}

/*home-single-banner-end*/


/*home-marketplace-banner*/
.home-marketplace-banner-container {
    display: flex;
    margin-top: 4rem;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.home-marketplace-banner-container::before, .home-marketplace-banner-container::after {
    display: none;
}

.home-marketplace-banner-container .home-marketplace-left-content {
    width: calc(45% - 2rem);
}

.home-marketplace-banner-container .home-marketplace-left-content > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-marketplace-banner-container .home-marketplace-left-content > a > img {
    width: 100%;
    border-radius: 10px;
}

.home-marketplace-banner-container .home-marketplace-right-content {
    width: calc(67% - 2rem);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.home-marketplace-banner-container .home-marketplace-right-content > a {
    width: calc(33.3% - 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-marketplace-banner-container .home-marketplace-right-content > a > img {
    width: 100%;
    border-radius: 10px;
}
/*home-marketplace-end*/

/*home-featured-build4*/
.featured-build4-container{
    margin-top: 2rem;
}
.featured-build4-content {
    padding: 1rem;
    padding-bottom: 0;
    display: flex;
    gap: 2rem;
}

.featured-build4-content .featured-build4-image {
    width: calc(30% - 1rem) !important;
}

.featured-build4-content .tab-content {
    width: calc(70% - 1rem) !important;
}
.featured-build4-content .featured-build4-image > a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.featured-build4-content .featured-build4-image > a > img {
    width: 100%;
}
.product-tab2-wrapper {
    padding: 1rem;
    padding-bottom: 52px;
    /* padding-top: 0; */
    height: auto;
}

.product-tab2-wrapper .product-wrap {
    background: #fff;
    position: relative;
}

.product-tab2-wrapper .product-wrap:hover .product-item {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 100%;
    box-shadow: 0px 0px 6px 0px rgba(1, 1, 1, 0.3);
    background-color: #fff;
    z-index: 1;
    /* padding: 1rem; */
    left: 0;
}


.product-tab2-wrapper .product-wrap .product-item > div {
    padding: 1rem 1rem 0 1rem;
}

.product-tab2-wrapper .product-wrap .product-item .product-category-title > a {
    font-size: 10px;
    color: #A3A3A3;
    font-weight: 600 !important;
}

.product-tab2-wrapper .product-wrap .product-item .product-name {
    margin: 0;
    min-height: auto;
}

.product-tab2-wrapper .product-wrap .product-item .product-name > a {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0077d0;
    font-weight: 700;
}

.product-tab2-wrapper .product-wrap .product-item .product-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 1rem 0; */
    padding-bottom: 1rem !important;
}

.product-tab2-wrapper .product-wrap .product-item .product-image > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-tab2-wrapper .product-wrap .product-item .product-image > a > img {
    width: 100%;
}

.product-tab2-wrapper .product-wrap .product-item .product-price-and-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem !important;
}



.product-tab2-wrapper .product-wrap .product-item .product-price-and-cart .product-price span.price-new {
    color: #000;
}


.product-tab2-wrapper .product-wrap .product-item .product-price-and-cart .product-cart > button {
    background: #0077d0;
    border: none;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-tab2-wrapper .product-wrap .product-item .product-reviews {
    position: unset;
    display: none;
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 1rem !important;
    border-top: 1px solid #ddd;
}

.product-tab2-wrapper .product-wrap:hover .product-item .product-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-tab2-wrapper .product-wrap .product-item .product-reviews .product-review-read {
    color: #f15927;
    /* padding-top: 0.8rem; */
    font-weight: 600;
}


.featured-build4-container .web-pageheader {
    margin-bottom: 1rem;
}
.product-tab2-wrapper .swiper-pagination3 {
    position: absolute;
    left: 42% !important;
    bottom: 26px !important;
}

.product-tab2-wrapper .swiper-pagination3 > span {
    background: #ddd !important;
    box-shadow: none !important;
    height: 8px;
    width: 8px;
}

.product-tab2-wrapper .swiper-pagination3 .swiper-pagination-bullet-active {
    width: 30px;
    background: #f15927 !important;
}
/*home-featured-build4-end*/

/*home-list-option-container*/
.home-list-options-content {
    display: flex;
    border: 1px solid #eee;
    border-radius: 10px;
    justify-content: space-between;
}

.home-list-options-content .home-list-options-left {
    width: 20%;
    padding: 2rem;
    background: #F9F9F9;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    flex-direction: column;
    padding-left: 3rem;
}

.home-list-options-content .home-list-options-middle {
    width: 20%;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.home-list-options-content .home-list-options-right {
    width: 60%;
}

.home-list-options-container {
    margin-bottom: 2rem;
}

.home-list-options-container .web-pageheader {
    margin-bottom: 2rem;
}

.home-list-options-content .home-list-options-left > div {
    display: flex;
    flex-direction: column;
}

.home-list-options-content .home-list-options-left > div > ul {
    padding-left: 1rem;
}

.home-list-options-content .home-list-options-left > div > a {
    color: #000;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: .7rem;
}

.home-list-options-content .home-list-options-left > div > ul > li:not(:last-child) {
    margin-bottom: .7rem;
}

.home-list-options-content .home-list-options-middle > ul {
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    justify-content: space-between;
}

.home-list-options-content .home-list-options-middle > ul > li:not(:last-child) {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

ul {}

.home-list-options-content .home-list-options-middle > ul > li > a {
    font-size: 13px;
    color: #6F777E;
}

.home-list-options-content .home-list-options-middle > ul > li {
    padding-bottom: 1rem;
}

.home-list-options-content .home-list-options-middle > ul > li > a:hover {
    color: #333e48;
    font-weight: 700;
}

.home-list-options-content .home-list-options-right > a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-list-options-content .home-list-options-right > a > img {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
}

.home-list-options-content .home-list-options-left .home-list-options-left-bottom > ul {
    margin: 0;
}
/*home-list-option-container-end*/

/*home-most-wanted-and-website-seo-text*/ 
.home-most-wanted-container {
    margin-bottom: 3rem;
}

.home-most-wanted-container .web-pageheader {
    margin-bottom: 1rem;
}

.home-most-wanted-container .home-most-wanted-content {
    display: flex;
    width: 100%;
}

.home-most-wanted-container .home-most-wanted-content > ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
}

.home-most-wanted-container .home-most-wanted-content > ul > li {
    padding: 1rem 3rem;
    background: #F1F2F4;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.2s ease-in-out;
}

.home-most-wanted-container .home-most-wanted-content > ul > li:not(:last-child) {
    margin-right: 1rem;
}

.home-most-wanted-container .home-most-wanted-content > ul > li > a {
    color: #77838f;
    font-size: 13px;
}

.home-website-seo-text-container {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.home-website-seo-text-container .home-website-seo-text-left {
    width: calc(75% - 3rem);
}

.home-website-seo-text-container .home-website-seo-text-right {
    width: calc(25% - 3rem);
}

.home-website-seo-text-container::before {
    display: none;
}

.home-website-seo-text-container::after {
    display: none;
}

.home-website-seo-text-container .home-website-seo-text-right .home-website-seo-text-right-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-website-seo-text-container .home-website-seo-text-left .home-website-seo-text-left-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-website-seo-text-container .home-website-seo-text-left .home-website-seo-text-left-content > p {
    font-size: 13px;
    width: 83%;
}

.home-website-seo-text-container .home-website-seo-text-left .home-website-seo-text-left-content > h4 {
    font-weight: 500;
    font-size: 20px;
}

.home-website-seo-text-container .home-website-seo-text-right .home-website-seo-text-right-content > img {
    width: 100%;
}

.home-website-seo-text-container .home-website-seo-text-right .home-website-seo-text-right-content > span {
    font-size: 14px;
    margin-top: 2rem;
    font-weight: 700;
    color: #000;
}

.home-website-seo-text-container .home-website-seo-text-right .home-website-seo-text-right-content > ul {
    display: flex;
    gap: 3rem;
    padding-left: 10px;
    margin: 0;
}


.home-website-seo-text-container .home-website-seo-text-right .home-website-seo-text-right-content > ul > li > a {
    font-size: 20px;
    color: #70787F;
}

.home-most-wanted-container .home-most-wanted-content > ul > li:hover {
    background: #77838f;
    box-shadow: 0 4px 11px rgba(119, 131, 143, 0.35);
}

.home-most-wanted-container .home-most-wanted-content > ul > li:hover > a {
    color: #fff;
}
/*home-most-wanted-and-website-seo-text-end*/ 

/*home-twin-banner*/
.home-twin-banner-container {
    margin-top: 4rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.home-twin-banner-container::before {
    display: none;
}

.home-twin-banner-container::after {
    display: none;
}
/*home-twin-banner-end*/

/*populer-categories*/
.populer-categories-container {
    display: flex;
    flex-direction: column;
}

.populer-categories-container .populer-categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.populer-categories-container .populer-categories-wrapper .populer-categories-content {
    display: flex;
    flex-direction: column;
    width: calc(25% - 1rem);
    position: relative;
    margin-bottom: 2rem;
}

.populer-categories-container .populer-categories-wrapper .populer-categories-content .populer-categories-content-bottom {
    display: flex;
    justify-content: end;
    padding-right: 1rem;
}

.populer-categories-container .populer-categories-wrapper .populer-categories-content .populer-categories-content-top {
    display: flex;
    justify-content: space-between;
}

.populer-categories-content-top .populer-categories-content-top-left {
    width: 35%;
    display: flex;
}

.populer-categories-content-top .populer-categories-content-top-left > a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.populer-categories-content-top .populer-categories-content-top-left > a > img {
    width: 100%;
}

.populer-categories-content .populer-categories-content-top .populer-categories-content-top-right {
    width: 65%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.populer-categories-content .populer-categories-content-top .populer-categories-content-top-right > ul {
    padding: 10px;
    margin-bottom: 0;
}

.populer-categories-content .populer-categories-content-top .populer-categories-content-top-right > span {
    color: #000;
    font-size: 15px;
    letter-spacing: 1px;
}

.populer-categories-content .populer-categories-content-top .populer-categories-content-top-right > ul > li > a {
    color: #9D9C9C;
    font-size: 11px;
}

.populer-categories-content .populer-categories-content-top .populer-categories-content-top-right > ul > li:not(:last-child) {
    margin-bottom: .3rem;
}

.populer-categories-container .populer-categories-wrapper .populer-categories-content .populer-categories-content-bottom > a {
    font-weight: 700;
    font-size: 13px;
    color: #9D9C9C;
}
.populer-categories-container .populer-categories-wrapper .populer-categories-content::after {
    position: absolute;
    right: 0;
    height: 95%;
    width: 1px;
    background: #e7eaf3;
    content: "";
    top: 12px;
}
/*populer-categories-end*/

/*footer*/
footer.web-footer {
    display: flex;
    flex-direction: column;
    background: #F8F8F8 !important;
}

.footer-ebulten-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f15927;
    padding: 2.5rem 0;
}
.footer-ebulten-container .footer-ebulten-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-ebulten-left {
    display: flex;
    align-items: center;
    width: 60%;
    color: #fff;
    gap: 6rem;
}

.footer-ebulten-right {
    width: 85%;
    display: flex;
    justify-content: center;
}

.footer-ebulten-left > span:nth-child(2) {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-ebulten-left > span:nth-child(2) > p {
    margin: 0;
}

.footer-ebulten-left > span {
    color: #fff;
    font-size: 16px;
}

.footer-ebulten-left > span > i {
    margin-right: 2rem;
    font-size: 25px;
}

.footer-ebulten-right > input {
    padding: 1rem 2rem !important;
    width: 75%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border: none;
}

.footer-ebulten-right > button {
    padding: 1rem 2rem;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border: none;
    width: 25%;
    font-weight: 700;
    font-size: 14px;
    background: #0077d0;
    color: #fff;
}
.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    padding: 5rem 0 !important;
}

.footer-bottom-container::before {
    display: none;
}

.footer-bottom-container::after {
    display: none;
}

.footer-bottom-container .footer-bottom-left {
    display: flex;
    flex-direction: column;
    width: 40%;
    gap: 3rem;
}

.footer-bottom-container .footer-bottom-left .footer-logo {
    width: fit-content;
    display: flex;
}

.footer-bottom-container .footer-bottom-left .footer-logo > a {
    display: flex;
    align-items: center;
}

.footer-bottom-container .footer-bottom-left .footer-logo > a > img {
    width: 90%;
}

.footer-bottom-container .footer-bottom-left .footer-call-center {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.footer-bottom-container .footer-bottom-left .footer-call-center .footer-mobil-applications {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-bottom-container .footer-bottom-left .footer-call-center .footer-mobil-applications > a:nth-child(1) {
    width: 14%;
}

.footer-bottom-container .footer-bottom-left .footer-call-center .footer-mobil-applications > a {
    width: 25%;
}

.footer-bottom-container .footer-bottom-left .footer-call-center .footer-mobil-applications > a > img {
    width: 100%;
}

.footer-bottom-right {
    width: 60%;
    display: flex;
}

.footer-bottom-container .footer-bottom-left .footer-call-center > i {
    font-size: 43px;
    color: #f15927;
}

.footer-bottom-container .footer-bottom-left .footer-call-center .footer-call-center-text {
    display: flex;
    flex-direction: column;
}

.footer-bottom-container .footer-bottom-left .footer-call-center .footer-call-center-text > span:nth-child(2) {
    display: flex;
    align-items: center;
    margin-top: .5rem;
    gap: .5rem;
    font-size: 13px;
}

.footer-bottom-container .footer-bottom-left .footer-call-center .footer-call-center-text > span:nth-child(2) > a {
    color: #333E48;
    font-size: 19px;
    font-weight: 700;
}

.footer-bottom-right .footer-bottom-list {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-bottom-right .footer-bottom-list > ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 1rem;
}

.footer-bottom-right .footer-bottom-list > ul > li {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-bottom-right .footer-bottom-list > ul > li > span:nth-child(2) {
    width: 80%;
    color: #333E48;
    font-size: 13px;
}

.footer-bottom-right .footer-bottom-list > span {
    color: #333E48;
    font-size: 15px;
    font-weight: 700;
}

.footer-bottom-right .footer-bottom-list > ul > li > span:nth-child(1) {
    font-weight: 700;
    color: #333E48;
}

.footer-bottom-right .footer-bottom-list > ul > li > a {
    color: #333E48;
    font-size: 13px;
}
.footer-copyright-container {
    padding: .5rem 0;
    background: #EAEAEA;
}

.footer-copyright-container .footer-copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright-container .footer-copyright-content > .footer-copyright-left {
    width: 55%;
    display: flex;
    gap: 3rem;
}

.footer-copyright-right {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45% !important;
    border-radius: 6px;
    padding: .5rem;
}

.footer-copyright-container .footer-copyright-content > .footer-copyright-left > span {
    color: #333E48;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-copyright-container .footer-copyright-content > .footer-copyright-left > span > a {
    font-weight: 700;
    color: #333e48;
}
form#subscribe {
    width: 40%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#notification-normal div.warning {
    color: #ffffff;
}
/*footer-end*/

/*category-page*/

.category-page-container .category-left-content .bf-form {
    height: 500px;
    overflow: auto;
}

.category-page-container {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-top: 1rem;
}

.category-page-container .category-left-content {
    width: calc(20% - 1rem);
    display: flex;
}

.category-page-container .category-right-content {
    width: calc(80% - 1rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-right-top-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.category-right-top-wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}



.category-page-title {}

.category-page-title > span {
    font-size: 19px;
    color: #000;
}

.category-numbers-text > span {
    font-size: 13px;
}

.category-right-filter-sort {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: #F5F5F5;
    padding: .5rem 1.5rem;
    border-radius: 11px;
}

.category-right-filter-sort .grid-buttons {
    display: flex;
    gap: 1rem;
}

.category-right-filter-sort .grid-buttons > button {
    background: none;
    border: none;
    padding: 0;
    color: #D6DBE1;
}

.category-right-filter-sort .grid-buttons > button > i {
    font-size: 16px;
}

.category-right-filter-sort .grid-buttons > button.active {
    color: #575560;
}


.category-right-filter-sort .sort-wrapper  .category-select {height: auto !important;padding: .5rem 1.5rem;padding-left: .8rem;width: 200px;border-radius: 17px !important;}

.category-page-container::before {
    display: none;
}

.category-page-container::after {
    display: none;
}

.category-pagination-top {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 13px;
    display: none;
}

.category-pagination-top > input {
    width: 44px;
    height: 30px;
    border-radius: 12px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    padding-left: 1rem !important;
}

.category-pagination-top > i {
    font-size: 15px;
    color: #A0A0A0;
}
.category-right-bottom-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-right-bottom-wrapper .product-wrap {
    background: #fff;
    position: relative;
    width: calc(20% - 1rem);
    height: 345px;
}

.category-right-bottom-wrapper .product-wrap .product-item {
    cursor: pointer;
    padding: 1rem;
}

.category-right-bottom-wrapper .product-wrap:only-child:hover .product-item {
    position: unset;
}

.category-right-bottom-wrapper .product-wrap .product-item .product-name {
    margin: 0;
    min-height: auto;
}

.category-right-bottom-wrapper .product-wrap .product-item .product-name > a {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0077d0;
    font-weight: 700;
}

.category-right-bottom-wrapper .product-wrap .product-item .product-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 1rem 0; */
    padding-bottom: 1rem !important;
}

.category-right-bottom-wrapper .product-wrap .product-item > div {
    padding: 1rem 1rem 0 1rem;
}

.category-right-bottom-wrapper .product-wrap .product-item .product-image > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-right-bottom-wrapper .product-wrap .product-item .product-image > a > img {
    width: 100%;
}

.category-right-bottom-wrapper .product-wrap .product-item  .product-price-and-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem !important;
}

.category-right-bottom-wrapper .product-wrap .product-item .product-price-and-cart p.price {
    color: #38434D;
}


.category-right-bottom-wrapper .product-wrap .product-item .product-price-and-cart p.price span.price-old {
    font-size: 11px;
    text-decoration: unset;
}

.category-right-bottom-wrapper .product-wrap .product-item .product-price-and-cart p.price span.price-new {
    font-size: 15px;
}

.category-right-bottom-wrapper .product-wrap .product-item .product-price-and-cart .product-cart > button {
    background: #0077d0;
    border: none;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-right-bottom-wrapper .product-wrap .product-item .product-reviews {
    position: unset;
    display: none;
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 0 !important;
    border-top: 1px solid #ddd;
    padding-top: 1rem !important;
}

.category-right-bottom-wrapper .product-wrap:hover .product-item .product-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-right-bottom-wrapper .product-wrap .product-item .product-reviews .product-review-read {
    color: #f15927;
    /* padding-top: 0.8rem; */
    font-weight: 600;
}

.category-right-bottom-wrapper .product-wrap:hover  .product-item {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 100%;
    box-shadow: 0px 0px 6px 0px rgba(1, 1, 1, 0.3);
    background-color: #fff;
    z-index: 1;
    /* padding: 1rem; */
    left: 0;
}
.category-right-filter-sort .sort-wrapper .category-order-select {
    height: auto !important;
    padding: 0.5rem 1.5rem;
    padding-left: 0.8rem;
    width: 100px;
    border-radius: 17px !important;
    border: 1px solid #e1e1e1;
}
.category-right-bottom-wrapper .product-wrap::after {
    content: "";
    height: 86%;
    width: 0.5px;
    background: #EAEAEA;
    position: absolute;
    right: 0;
    top: 6%;
}

/*product-grid-list*/
.product-grid-list {flex-wrap: wrap;display: none;}

.product-grid-list .product-wrap {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.product-grid-list .product-wrap .product-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.product-grid-list .product-wrap .product-item .product-image {
    width: 13%;
}

.product-grid-list-information {
    width: 56%;
    display: flex;
    flex-direction: column;
}

.product-grid-list .product-wrap .product-item .product-price-and-cart {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
}

.product-grid-list-information .product-reviews {
    position: unset !important;
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 0;
}

.product-grid-list-information .product-name {
    min-height: auto !important;
    margin: 0;
    display: flex;
    width: 80%;
}
.product-grid-list-information div {
    padding: 1rem 1rem 0 1rem;
    text-wrap: nowrap;
}

.product-grid-list-information .product-category-title > a {
    font-size: 10px;
    color: #A3A3A3;
    font-weight: 600 !important;
}

.product-grid-list-information .product-name > a {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0077d0;
    font-weight: 700;
}

.product-grid-list-information .product-reviews .productrating > i:not(:nth-child(4)) {
    color: #FFC107;
}

.product-grid-list .product-wrap .product-item .product-price-and-cart .product-price {
    width: 50%;
}

.product-grid-list .product-wrap .product-item .product-price-and-cart .product-cart {
    width: 50%;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    gap: 1rem;
}

.product-grid-list .product-wrap .product-item .product-price-and-cart .product-cart > button {
    background: #0077d0;
    border: none;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    color: #fff;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-grid-list .product-wrap .product-item .product-price-and-cart .product-price p.price {
    font-size: 18px;
    font-weight: 700;
}

.product-grid-list .product-wrap .product-item .product-price-and-cart .product-price p.price span.price-new {
    font-size: 18px;
    font-weight: 700;
}
/*product-grid-list-end*/
.category-page-container .category-left-content #column-left {
    width: 100%;
    padding: 0;
    box-shadow: none;
    border: none !important;
}
.pagination-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.pagination-content ul.pagination {
    display: flex;
    gap: 1rem;
}

.pagination-content ul.pagination > li > a {
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-content ul.pagination > li.active > span {
    border: 1px solid #eee !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
}

.pagination-content ul.pagination > li:hover > a {
    background: #eee !important;
    color: #7a7a7a !important;
}

/*brainy-filter*/
.category-page-container .category-left-content .box-heading {
    background: #fff !important;
    border: none;
    position: relative;
    border-bottom: 1px solid #DDD;
    padding-left: 0;
    font-size: 16px;
}

.category-page-container .category-left-content .bf-attr-header {
    background: #fff !important;
    color: #333E48 !important;
    font-weight: 700;
    font-size: 13px;
    padding-top: 2rem;
}

.category-page-container .category-left-content .box.bf-check-position {border: none;}

.category-page-container .category-left-content .bf-attr-block:not(:last-child) {
}

.category-page-container .category-left-content .bf-attr-block {margin-top: 2rem;}

.category-page-container .category-left-content .bf-attr-block span.bf-cell.bf-c-3 {
    display: none;
}

.category-page-container .category-left-content .bf-attr-block span.bf-cell.bf-c-2 > label {
    font-size: 13px;
    color: #333e48;
}

.category-page-container .category-left-content .bf-attr-block .bf-attr-filter {}

.category-page-container .category-left-content .bf-attr-block .bf-attr-filter .bf-cell {
    border: none;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    touch-action: none;
    z-index: 2;
    background: #f15927 !important;
    top: -4px;
}

.bf-slider-range {
    background: #DCDCDC !important;
    width: 100% !important;
    position: relative;
}

.bf-price-slider-container {
    padding-right: 0;
}
.category-page-container .category-left-content .bf-attr-block:not(:first-child) .bf-attr-header {
    padding-top: 2rem;
}

.category-page-container .category-left-content .bf-price-filter .bf-attr-header {
    padding-top: 0 !important;
}

.category-page-container .category-left-content .box-heading::before {
    content: " ";
    position: absolute;
    width: 30%;
    height: 1.5px;
    background: #f15927;
    left: 0;
    bottom: -1px;
}
/*brainy-filter-end*/

/*category-module*/
.category-module-left {
    display: flex;
    flex-direction: column;
    /* padding: 2rem; */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.category-module-left > div > ul {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-module-left > div {display: flex;flex-direction: column;}

.category-module-bottom-content {
    padding: 2rem;
    padding-top: 1.5rem;
}

ul.category-module-all-categories {
    padding: 2rem;
    padding-left: 3rem !important;
    margin-bottom: 0;
    display: none !important;
}
ul.active-all-categories{
    display: flex !important;
}
.category-module-top-content {
    margin-top: 1rem;
}

.category-module-top-content > span {border-bottom: 1px solid #ddd;width: 100%;padding: 1rem 2rem;color: #000;font-size: 13px; cursor: pointer;}

.category-module-bottom-content span.category-module-bottom-content-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    font-weight: 700;
    color: #000;
    font-size: 13px;
}

.category-module-bottom-content > ul {
    padding-top: 1.5rem;
}
/*category-module-end*/

/*category-page-end*/

/*product-page*/




.product-left-content {
    width: 37%;
}


.product-image > img {
    width: 100%;
}

.product-image {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.3s ease;
}

.product-content .product-image > a {
    display: flex;
    align-items: center;
    position: relative;
}

.product-content .product-image > a > img {
    width: 100%;
}

.gallery-thumbs {
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.gallery-thumbs .little-image {
}

.gallery-thumbs .little-image .swiper-slide {
    border: 1px solid #EAEAEA;
    /* border-radius: 5px; */
    transition: 0.3s ease-in;
    cursor: pointer;
}

.gallery-thumbs .little-image .swiper-slide > a {
    display: flex;
    align-items: center;
}

.gallery-thumbs .little-image .swiper-slide > a > img {
    width: 100%;
    /* border-radius: 5px; */
}

.gallery-thumbs .little-image .swiper-slide > img {
    width: 100%;
    /* border-radius: 5px; */
}
.gallery-thumbs .little-image .swiper-slide.swiper-slide-thumb-active {
    border-bottom: 1px solid #f15927;
}
.product-middle-content {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-right-content {
    width: 22%;
}

.product-middle-content .product-category-name {}

.product-middle-content .product-category-name > span {
    font-size: 12px;
    color: #878787 !important;
}

.product-middle-content .product-name-content {}

.product-middle-content .product-name-content > span {
    font-size: 25px;
    color: #000;
}

.product-middle-content .product-page-rating-content {
    display: flex;
    gap: .5rem;
}
.product-middle-content .product-page-rating-content .productrating {}

.product-middle-content .product-page-rating-content .productrating i.fas.fa-star {
    color: #ffc107 !important;
}

.product-middle-content .product-page-rating-content .productrating > i {
    font-size: 13px;
    color: #ddd;
}

.product-middle-content .product-page-rating-content .rating-content-text {
    font-size: 13px;
}

.product-middle-content .product-attributes-content {}

.product-middle-content .product-attributes-content > ul {
    padding-left: 15px;
}

.product-middle-content .product-attributes-content > ul > li {
    list-style: unset;
}

.product-middle-content .product-attributes-content > ul > li > span {
    font-size: 14px;
}

.product-middle-content .product-mini-description {}

.product-middle-content .product-mini-description > span {
    font-size: 14px;
    line-height: 24px;
}

.product-middle-content .product-stock-code {
    display: flex;
    gap: .5rem;
    margin-top: 2rem;
}

.product-middle-content .product-stock-code > span:nth-child(1) {
    font-weight: 700;
}

.product-middle-content .product-stock-code > span {
    font-size: 14px;
}
.product-information-card {
    padding: 2.5rem;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-information-card div#product {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.product-information-card .product-price-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.product-information-card .product-price-content span.price-old {
    width: 100%;
    font-size: 16px;
    text-decoration: unset;
    color: #87898B;
}

.product-information-card .product-price-content span.price-new {
    margin-right: 0;
    font-size: 30px;
    color: #333E48;
    font-weight: 700;
    display: flex;
    width: 75%;
}

.product-information-card .product-price-content span.price-discound {
    display: flex;
    width: 20%;
    justify-content: center;
    align-items: center;
    height: fit-content;
    background: #5CB85C;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
    margin-top: 1rem;
}

.product-information-card .product-cargo-text {}

.product-information-card .product-cargo-text > span {
    font-size: 12px;
    font-weight: 600;
}

.product-information-card .product-cargo-text > span > span {
    font-weight: 700;
    color: #0077D0;
}

.product-information-card .product-quantity-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.product-information-card .product-quantity-content .product-quantity {
    width: fit-content;
    position: relative;
}

.product-information-card .product-quantity-content .product-quantity > input {
    position: relative;
    border-radius: 15px;
    border: 1px solid #ddd;
    padding: .7rem .5rem;
    width: 85%;
    padding-left: 1.5rem;
}

.product-information-card .product-quantity-content .product-quantity > i {
    position: absolute;
    z-index: 99999;
    right: 32px;
    top: 0;
    font-size: 11px;
    cursor: pointer;
    width: 15px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-information-card .product-quantity-content .product-quantity > i:nth-child(1) {
}

.product-information-card .product-quantity-content .product-quantity > i.far.fa-minus {
    right: 55px;
}

.product-information-card .product-quantity-content > span {
    font-weight: 600;
}
.product-information-card .product-color-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.product-information-card .product-color-content select {
    width: 100%;
    border-radius: 15px;
    border: 1px solid #ddd;
    padding: 0.7rem 0.5rem;
    padding-left: 1.5rem;
}

.product-information-card .product-color-content > span {
    font-weight: 600;
}

.product-information-card .product-cart-add-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.product-information-card .product-cart-add-buttons > div {
    width: 100%;
    border-radius: 50px;
    border: 1px solid #ddd;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

.product-information-card .product-cart-add-buttons .product-add-card {
    background: #f15927;
    color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.product-information-card .product-cart-add-buttons .product-buy-now {
    padding: .9rem;
    border-radius: 35px;
    background: #333E48;
    color: #fff;
}

.product-information-card .product-wishlist-add {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
}
.product-middle-content .product-brand-logo > img {
    padding: 1rem;
    padding-left: 0;
}

.product-page-tab-wrapper {
    background: #F9F9F9;
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.product-page-tab-wrapper .product-page-tab-container {
    background: #ffff;
    padding: 2rem;
    margin-bottom: 4rem;
}

.product-page-tab-header {
    width: 100%;
}

.product-page-tab-header > ul {
    padding-left: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 2rem;
    margin: 0;
    height: 100%;
    /* padding-bottom: .7rem; */
    border-bottom: 1px solid #ddd;
    height: 40px;
}

.product-page-tab-header > ul > li {
    /* height: 100%; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.product-page-tab-header > ul > li > div {}

.product-page-tab-header > ul > li > div > span {
    font-size: 17px;
}
.product-page-tab-header > ul > li.active-tab {
    border-bottom: 3px solid #f15927;
}
.product-page-tab-header > ul > li.active-tab::after {
    content: "";
    /* width: 100px; */
    /* height: 2px; */
    /* background: #f15927; */
    /* position: absolute; */
    /* bottom: -9px; */
}

.product-page-tab-header > ul > li.active-tab::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 5px;
    border-radius: 35px;
    background: #f15927;
    bottom: -6px;
    right: 43%;
    z-index: 99;
}

div#get-together-section {
    /* background: #fff; */
}

.get-together-content {
    display: flex;
    padding: 1rem;
    padding-top: 2rem;
}

.product-page-tab-wrapper .product-page-tab-container main#content-tabs > div:not(:nth-child(2)) {
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.product-page-tab-wrapper .product-page-tab-container main#content-tabs > div .get-together-content {
    display: flex;
    width: 90%;
    justify-content: space-between;
}

.get-together-content .get-together-content-left {
    width: 80%;
    display: flex;
    flex-direction: column;
}

.get-together-content .get-together-content-left .get-together-wrapper {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap {
    background: #fff;
    width: 20%;
    position: relative;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item > div {
    padding: 1rem 1rem 0 1rem;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item .product-category-title > a {
    font-size: 10px;
    color: #A3A3A3;
    font-weight: 600 !important;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item {}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item .product-name {
    margin: 0;
    min-height: auto;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item .product-name > a {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0077d0;
    font-weight: 700;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item .product-price-and-cart {
    padding-top: 0;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item .product-price-and-cart span.price-new {
    color: #000;
    font-weight: 600;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item .product-price-and-cart span.price-old {
    font-size: 12px;
    color: #000;
    text-decoration: unset;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item .product-price-and-cart p.price {
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item .product-image {
    padding-bottom: 1rem;
    /* height: 110px; */
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap .product-item .product-price-and-cart .new-sale-price {
    color: #f15927 !important;
}
.get-together-checkbox label > a {
    color: #1877d0;
    text-decoration: underline;
}
label.vehicle1 > a {
    color: #646464;
    text-decoration: unset;
}

label.vehicle1 > a span:nth-child(1) {
    font-weight: 700;
    color: #646464;
}

.get-together-checkbox label > span {
    color: #f15927;
}

label.vehicle1 > a > span:nth-child(2) {
    color: #f15927;
    font-weight: 600;
}


.get-together-checkbox label {
    margin-left: .5rem;
}


.get-together-content .get-together-content-left .get-together-wrapper .product-wrap:not(:last-child)::after {
    content: "";
    height: 86%;
    width: 0.5px;
    background: #EAEAEA;
    position: absolute;
    right: -10px;
    top: 6%;
}

.get-together-content .get-together-content-left .get-together-wrapper .product-wrap:not(:last-child)::before {
    content: "\f067";
    font-family: 'Font Awesome 5 Pro';
    height: 35px;
    width: 35px;
    position: absolute;
    right: -28px;
    top: 43%;
    border: 1px solid #EAEAEA;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    color: #000;
}
.get-together-content .get-together-content-right {
    height: fit-content;
    width: 20%;
}

.get-together-content .get-together-content-right .get-together-total-addcart {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.get-together-content .get-together-content-right .get-together-total-addcart .get-together-total-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.get-together-content .get-together-content-right .get-together-total-addcart .get-together-total-price > span:nth-child(1) {
    font-size: 30px;
    color: #f15927;
    font-weight: 600;
}

.get-together-content .get-together-content-right .get-together-total-addcart .get-together-total-price > span:nth-child(2) {
    font-size: 14px;
}

.get-together-content .get-together-content-right .get-together-total-addcart .get-together-add-cart > button {
    padding: 1.2rem;
    background: #f15927;
    border: none;
    border-radius: 30px;
    width: 85%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
div#specifications-section {}

div#specifications-section div#tab-specification {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 3rem;
}

div#specifications-section div#tab-specification span.specification-header {
    font-size: 22px;
    color: #000;
    margin-bottom: 2rem;
}

div#specifications-section div#tab-specification ul.attrCont {
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 1rem;
}

div#specifications-section div#tab-specification ul.attrCont > li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

div#specifications-section div#tab-specification ul.attrCont > li > span {
    width: 50%;
    font-size: 13px;
    color: #000;
}

div#specifications-section div#tab-specification ul.attrCont > li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

div#specifications-section div#tab-specification ul.attrCont > li span.attrNameText {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    padding-left: 1rem;
}
.product-information-card .product-color-content .option-container {
    max-height: unset !important;
    margin-top: 0;
    border: none;
    padding: 0;
}
.product-information-card .product-wishlist-add > button> i {
    margin-right: .5rem;
}

.product-information-card .product-wishlist-add button.btn-wishlist {
    background: none;
    line-height: unset !important;
    font-size: 12px !important;
}
/*product-page-end*/

/*product-reviews*/
.product-rating-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 3rem;
  }
  
  .product-rating-container .tab-review-product-name {
  }
  
  .product-rating-container .tab-review-product-name > span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
  }
  
  .product-rating-container .tab-rating-container {
    display: flex;
    width: 100%;
    /* align-items: center; */
    justify-content: center;
    /* align-items: center; */
    margin-top: 2rem;
    flex-direction: column;
    position: relative;
    padding-bottom: 30px;
  }
  .product-rating-container .tab-rating-container::before {
    content: "";
    background: #f5f5f5;
    width: calc(100% + 60px);
    height: 1px;
    position: absolute;
    bottom: 0;
    left: -30px;
  }
  
  .product-rating-container .tab-rating-container .rating-top {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    align-items: center;
    /* margin-top: 2rem; */
  }
  
  .product-rating-container .tab-rating-container .rating-content {
    width: 75%;
    display: flex;
    flex-direction: column;
    margin-right: 1rem;
  }
  
  .product-rating-container .tab-rating-container .rating-result {
    width: 25%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    height: 180px;
    margin-bottom: 1rem;
  }
  
  .product-rating-container .tab-rating-container .rating-content .rating-item {
    display: flex;
    width: 95%;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .rating-stars-wrapper {
    display: flex;
    width: 100%;
  }
  
  .rating-stars-wrapper .rating-stars {
    width: 20%;
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
  }
  
  .rating-stars-wrapper .rating-info {
    width: 20%;
    display: flex;
    font-size: 15px;
    align-items: center;
  }
  
  .rating-stars-wrapper .rating-stars > i {
    font-size: 23px;
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-content
    .rating-item
    .rating-stars-wrapper
    .rating-info
    > span {
    color: #c8c8c8;
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-content
    .rating-item
    .rating-stars-wrapper
    .rating-progress {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-content
    .rating-item
    .rating-stars-wrapper
    .rating-progress
    .progress {
    width: 100%;
    background: #f5f5f5;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-content
    .rating-item
    .rating-stars-wrapper
    .rating-progress
    .progress
    .progress-bar {
    background: #ffb928;
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-result
    .rating-result-title {
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-result
    .rating-result-title
    > span {
    font-size: 20px;
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-result
    .rating-result-stars-wrap {
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-result
    .rating-result-stars-wrap
    .result-rating--stars {
    margin: 10px 0;
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-result
    .rating-result-stars-wrap
    .result-rating--stars
    > i {
    font-size: 20px;
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-result
    .rating-result-rating {
    font-size: 17px;
  }
  .input-rating label::before {
    margin-right: 5px;
    content: "\f005";
    font-family: 'Font Awesome 5 Pro';
    display: inline-block;
    font-size: 22px;
    color: #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  
  .input-rating input {
    border: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    opacity: 0;
  }
  
  .input-rating {
    display: flex;
    position: relative;
    display: inline-block;
    border: 0;
    margin-left: 20px;
  }
  
  .input-rating label {
    position: relative;
    float: right;
    color: #c8c8c8;
    cursor: pointer;
    display: flex;
    align-items: center;
    left: -5px;
  }
  .rating-new-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .rating-new-area .new-area-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .rating-new-area .new-area-top .new-area-text {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #646464;
  }
  
  .rating-new-area .new-area-top .new-area-rating {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .rating-new {
    display: none;
    padding: 30px 0;
    position: relative;
  }
  
  .rating-new::before {
    content: "";
    background: #f5f5f5;
    width: calc(100% + 60px);
    height: 1px;
    position: absolute;
    bottom: 0;
    left: -30px;
  }
  
  .rating-new-title {
    font-size: 20px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 25px;
  }
  
  .product-rating-container .tab-rating-container::before {
    content: "";
    background: #f5f5f5;
    width: calc(100% + 60px);
    height: 1px;
    position: absolute;
    bottom: 0;
    left: -30px;
  }
  
  .input-rating input:checked ~ label:before {
    color: #ffc107;
    content: "\f005";
  }
  
  .input-rating label:hover:before {
    color: #ffc107;
    content: "\f005";
  }
  
  .wrating-review {
    display: flex;
    flex-direction: column;
  }
  
  .wrating-review > input {
    font-size: 14px !important;
    color: #555 !important;
    padding: 0 20px;
  }
  
  .wrating-review > textarea {
    padding: 20px;
    border: 0;
    border-radius: 5px;
    max-width: 790px;
    min-height: 150px;
    resize: vertical;
    margin-top: 25px;
    background: #f5f5f5;
    font-size: 16px !important;
  }
  
  .rating-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
  }
  
  .rating-actions .rating-buttons {
    display: flex;
  }
  
  .rating-actions .rating-buttons .rating-button {
    padding: 0 25px;
    height: 45px;
    line-height: 45px;
    border: 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    background: #f15927;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
  }
  
  .rating-actions .rating-buttons .rating-button > i {
    margin-right: 0.5rem;
  }
  
  .product-rating-container
    .tab-rating-container
    .rating-content
    .rating-item
    .rating-stars-wrapper
    .rating-stars
    > i:not(:last-child) {
    margin-right: 0.3rem;
  }
  
  .input-rating label:hover ~ label:after {
    color: #ffdb70;
  }
  
  .input-rating label:hover ~ label:before {
    color: #ffdb70;
    content: "\f005";
  }
  .rating-send {
    width: 100%;
  }
  
  .rating-send .buttons {
  }
  
  .rating-send .buttons .pull-right {
    display: flex;
    width: 100%;
    justify-content: end;
  }
  
  .rating-send .buttons .pull-right > button {
    border:  0 !important;
    border-radius: 5px !important;
    padding: 0 60px !important;
    height: 45px !important;
    line-height: 45px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    background: #f15927 !important;
    border: 1px solid #f15927 !important;
    border-radius: 5px !important;
    color: #fff !important;
  }
  
  .rating-send .buttons .pull-right > button:hover {
    background: #fff !important;
    color: #8d4a32 !important;
  }
  
  .product-tab-comments {
    display: flex;
    width: 100%;
  }
  
  .product-tab-comments .product-tab-comments--list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .product-tab-comments .product-tab-comments--list .product-tab-comment {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .product-tab-comments
    .product-tab-comments--list
    .product-tab-comment
    .product-tab-comment--inner {
    display: flex;
    flex-direction: column;
    width: 75%;
  }
  
  .product-tab-comments
    .product-tab-comments--list
    .product-tab-comment
    .product-tab-comment--inner
    .product-tab-comment__head {
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  .product-tab-comments
    .product-tab-comments--list
    .product-tab-comment
    .product-tab-comment--inner
    .product-tab-comment__head
    .product-tab-comment__meta {
    flex: 1;
    display: flex;
    width: 100%;
    height: 55px;
    align-items: center;
    justify-content: space-between;
  }
  .product-tab-comments
    .product-tab-comments--list
    .product-tab-comment
    .product-tab-comment--inner
    .product-tab-comment__head
    .product-tab-comment__meta
    .product-tab-comment__metadata {
    font-size: 15px;
  }
  
  .product-tab-comments
    .product-tab-comments--list
    .product-tab-comment
    .product-tab-comment--inner
    .product-tab-comment__head
    .product-tab-comment__meta
    .product-tab-comment__metadata
    > span {
    font-weight: 800;
  }
  
  .product-tab-comments
    .product-tab-comments--list
    .product-tab-comment
    .product-tab-comment--inner
    .product-tab-comment__bottom {
    margin-left: 20px;
  }
  
  .product-tab-comments
    .product-tab-comments--list
    .product-tab-comment
    .product-tab-comment--inner
    .product-tab-comment__bottom
    .product-tab-comment__text {
    border-radius: 5px;
    padding: 20px;
    line-height: 1.4;
    background: #f5f5f5;
    color: #646464;
    font-size: 15px;
  }
  .product-tab-comments
    .product-tab-comments--list
    .product-tab-comment
    .product-tab-comment--inner
    .product-tab-comment__head
    .product-tab-comment__meta
    .rating-stars-wrapper {
    width: auto;
  }
  
  .product-tab-comments
    .product-tab-comments--list
    .product-tab-comment
    .product-tab-comment--inner
    .product-tab-comment__head
    .product-tab-comment__meta
    .rating-stars-wrapper
    .rating-stars
    > i:not(:last-child) {
    margin-right: 0.3rem;
  }
  
  .product-tab-comments
    .product-tab-comments--list
    .product-tab-comment
    .product-tab-comment--inner
    .product-tab-comment__head
    .product-tab-comment__meta
    .rating-stars-wrapper
    .rating-stars
    > i {
    font-size: 20px;
  }
  .rating-new > span {
    color: #4c4c4c;
    font-size: 16px;
    font-weight: 200;
  }
  .product-description-tab-container .product-tab-wrapper .nav-pills > li {
    width: calc(33.3% - (2rem * 3) / 3);
    background-color: #fbfbfb;
    border: 1px solid #ececec;
  }
  .product-related-wrapper .product-wrap {
    width: 100%;
  }
  .sogo-product-container .product-right .product-details-lower .product-cart-buttons .product-fav .add_favori.favorited .bi.bi-star-fill {
    color: #EBEB1A;
  }
  .product-information-card .product-cart-add-buttons > div > button {
    background: unset;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    border: none;
}
  /*product-reviews-end*/

/*sss-page*/
.sss-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* width: 100%; */
}


.sss-container .sss-panel-group {width: 100%;margin-top: 3rem;}

.sss-container .sss-panel-group .sss-panel {border: none;box-shadow: none;border-bottom: 1px solid #ddd;}

.sss-container .sss-panel-group .sss-panel .panel-heading {
    background: no-repeat;
    border: none;
    box-shadow: none;
}

.sss-container .sss-panel-group .sss-panel .panel-heading .panel-title {}

.sss-container .sss-panel-group .sss-panel .panel-heading > a {
    text-decoration: none;
}

.sss-panel .panel-heading .panel-title > a {
    text-decoration: none;
    font-size: 22px;
    width: 100%;
    display: flex;
}
.sss-container .sss-panel-group .sss-panel .panel-body {
    color: #747474;
    font-size: 14px;
    padding-bottom: 5rem;
}

/*sss-page-end*/

/*information-page*/
.information-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.information-page-content .information-content {
    margin-top: 2rem;
}

.information-page-content .information-header span {
    font-size: 35px;
    color: #333E48;
}
/*information-page-end*/

/*account-fixed*/
.account-header-fixed-container {
    position: fixed;
    background: #fff;
    height: 100%;
    top: 0;
    z-index: 9999999;
    right: 0;
    width: 20%;
    padding: 2rem;
    display: none;
    flex-direction: column;
    gap: 2rem;
}
.account-header-fixed-container.active-fixed{
    display: flex;
}

.account-header-fixed-container .account-fixed-content > span {
    text-align: center;
}

.account-header-fixed-container .account-fixed-close {
    display: flex;
    justify-content: end;
}

.account-header-fixed-container .account-fixed-close > button {
    font-size: 25px;
    background: #fff;
    border: none;
}

.account-header-fixed-container .account-fixed-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.account-header-fixed-container .account-fixed-content > span:nth-child(1) {
    font-size: 20px;
    color: #000;
}

.account-header-fixed-container .account-fixed-content > span:nth-child(2) {
    width: 80%;
    font-size: 13px;
}

.account-header-fixed-container .account-fixed-content > form {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.account-fixed-input {
    display: flex;
    align-items: center;
    /* gap: 1rem; */
    border: 1px solid #DDDDDD;
    /* padding: .5rem 1rem; */
    width: 80%;
    border-radius: 30px;
    justify-content: center;
}

.account-fixed-input input.form-control {
    border: none;
    box-shadow: none;
    width: 75%;
    margin: 0 !important;
    padding: 0;
    height: 36px;
    padding: 0.5rem 1rem;
    display: flex;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.account-fixed-input > i {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #DDDDDD;
    /* padding: 0.5rem 1rem; */
    /* padding-right: 1rem; */
    width: 25%;
    color: #A1ABB5;
}
.account-header-fixed-container .account-fixed-content > form .header-fixed-forget {
    width: 100%;
    display: flex;
    justify-content: end;
}

.account-header-fixed-container .account-fixed-content > form .header-fixed-forget span.forgetPass {border-bottom: 1px dashed #97a4af !important;font-size: 11px;}

.account-header-fixed-container .account-fixed-content > form .header-fixed-forget span.forgetPass > a {
    color: #A1ABB5 !important;
}

.account-fixed-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.account-fixed-btn > button {
    display: flex;
    align-items: center;
    border: 1px solid #f15927;
    padding: .8rem 1rem;
    width: 80%;
    border-radius: 30px;
    justify-content: center;
    background: #f15927;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.account-fixed-register-text {
    margin-top: 1rem;
}

.account-fixed-register-text > span {
    font-size: 12px;
}

.account-fixed-register-text > span > a {
    color: #f15927;
    font-weight: 700;
}

.account-fixed-content-register {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.account-fixed-content-register > span:nth-child(1) {
    font-size: 20px;
    color: #000;
    text-align: center;
}

.account-fixed-content-register > span:nth-child(2) {
    width: 80%;
    font-size: 13px;
    text-align: center;
}

.account-fixed-content-register > form {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}
.account-fixed-login-text {
    margin-top: 1rem;
}

.account-fixed-login-text > span {
    font-size: 12px;
}

.account-fixed-login-text > span > a {
    color: #f15927;
    font-weight: 700;
}

.account-fixed-content-passwordreset {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.account-fixed-content-passwordreset > span:nth-child(1) {
    font-size: 20px;
    color: #000;
}

.account-fixed-content-passwordreset > span:nth-child(2) {
    width: 100%;
    font-size: 13px;
}

.account-fixed-content-passwordreset > span {
    text-align: center;
}

.account-fixed-content-passwordreset > form {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}
/*account-fixed-end*/

/*header-cart*/
div#cart {}

div#cart ul.dropdown-menu {
    margin-top: 0;
    top: 45px;
    padding: 1rem;
    min-width: 332px;
    border-top: 2px solid #f15927;
    padding-top: 1.5rem;
}

div#cart ul.dropdown-menu li.has-scroll {
    max-height: none !important;
    margin-bottom: 1rem;
}

div#cart ul.dropdown-menu li.has-scroll > table {
    margin: 0;
}

div#cart ul.dropdown-menu > li {display: flex;width: 100%;justify-content: center;align-items: center;}

div#cart ul.dropdown-menu > li p.text-center {
    padding: 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #fff;
    gap: 1rem;
    border-top: none !important;
}

div#cart ul.dropdown-menu > li p.text-center a {
    padding: 0;
    margin: 0;
    background: #f15927;
}

#cart .dropdown-menu::before {
    display: none;
}

div#cart ul.dropdown-menu li.has-scroll > table > tbody {
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 1rem; */
    width: 100%;
}

div#cart ul.dropdown-menu li.has-scroll > table > tbody > tr {
    display: flex;
    padding-bottom: 10px;
    gap: .5rem;
    width: 100%;
    overflow: hidden;
    padding-top: .5rem;
}

div#cart ul.dropdown-menu li.has-scroll > table > tbody > tr > td {
    padding: 0 !important;
}

div#cart ul.dropdown-menu li.has-scroll > table > tbody > tr > td > a {
    padding: 0;
}

div#cart ul.dropdown-menu li.has-scroll > table > tbody > tr > td.text-center {
    display: flex;
    height: fit-content;
    width: 30%;
}

div#cart ul.dropdown-menu li.has-scroll > table > tbody > tr  .text-left {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 50%;
}

div#cart ul.dropdown-menu li.has-scroll > table > tbody > tr .text-left > a {
    text-align: start;
    width: 100%;
    color: #0077D0;
    font-weight: 800;
    display: flex;
    height: fit-content;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow:hidden;
}

div#cart ul.dropdown-menu li.has-scroll > table > tbody > tr .cart-close {
    width: 10% !important;
}

div#cart ul.dropdown-menu li.has-scroll > table > tbody > tr .cart-close > button {
    width: 100%;
    padding: 0;
}

div#cart ul.dropdown-menu li.has-scroll > table > tbody > tr .text-left > p {
    width: 50%;
    margin: 0 !important;
    height: fit-content;
    color: #000;
}
div#cart ul.dropdown-menu > li .cart-button > a {
    border-radius: 25px;
    height: auto !important;
    line-height: unset;
    padding: 1rem !important;
    font-weight: 700 !important;
    text-transform: none;
}

div#cart ul.dropdown-menu > li .cart-button > a:nth-child(1) {
    background: #F1F2F4;
    color: #77838F;
}
/*header-cart-end*/

/*error-not-found*/
.error-not-found-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 4rem;
    margin-bottom: 4rem;
}

.error-not-found-container .error-not-found-content {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.error-not-found-container .error-not-found-content .not-found-header {}

.error-not-found-container .error-not-found-content .not-found-header > span {
    font-size: 70px;
    font-weight: 100;
    color: #333E48;
}

.error-not-found-container .error-not-found-content .not-found-text > span {
    font-size: 20px;
    font-weight: 300;
    color: #333e48;
}

.not-found-page-search {
    width: 45%;
}

.not-found-page-search .search-container {
    width: 100%;
}

.not-found-page-search .search-container div#search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.not-found-page-search .search-container div#search > input {
    border: 1px solid #ddd;
    padding: 2.2rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    width: 86%;
}

.not-found-page-search .search-container div#search button#searchButton {
    position: relative;
    width: 13%;
    height: 45px;
    border: 1px solid #f15927;
    border-radius: 25px;
    background: #f15927 !important;
}

.not-found-page-search .search-container div#search button#searchButton > i {
    color: #fff;
}

.not-found-page-search .search-container div#search button#searchButton:hover {
    background: #333E48 !important;
    border-color: #333E48;
}

.not-found-page-search .search-container div#search button#searchButton:hover > i {
    color: #fff !important;
}
/*error-not-found-end*/

/*wishlist-page*/
div#account-wishlist {
    display: flex;
}
.wishlist-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.wishlist-wrapper .wishlist-header {}

.wishlist-wrapper .wishlist-header > span {
    font-size: 40px;
    letter-spacing: 2px;
    color: #333E48;
}

.wishlist-wrapper .wishlist-wrap-content {
    width: 100%;
}

.wishlist-wrapper .wishlist-wrap-content > table {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}

.wishlist-wrapper .wishlist-wrap-content > table > thead {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
}
.wishlist-wrapper .wishlist-wrap-content > table > thead > tr {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #ddd;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td {
    width: 16%;
    color: #000;
    font-size: 16px;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td:nth-child(1) {
    width: 5%;
}

.wishlist-wrapper .wishlist-wrap-content > table > thead > tr > th {
    width: 16%;
    color: #74748A;
    font-weight: 100;
    font-size: 16px;
}

.wishlist-wrapper .wishlist-wrap-content > table > thead > tr > th:nth-child(1) {
    width: 5%;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td:nth-child(2) {
    width: 10%;
}

.wishlist-wrapper .wishlist-wrap-content > table > thead > tr > th:nth-child(2) {
    width: 10%;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td:nth-child(2) .wishlist-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    width: 90px;
    height: 90px;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td:nth-child(2) .wishlist-image > a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td:nth-child(2) .wishlist-image > a > img {
    width: 100%;
    padding: 1rem;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td:nth-child(3) {
    width: 40%;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td .actions-link {
    background: none;
    position: unset;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td:nth-child(4) {
    width: 10%;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td:nth-child(5) {
    width: 10%;
    padding-left: 1rem;
}



.wishlist-wrapper .wishlist-wrap-content > table > thead > tr > th:nth-child(3) {
    width: 40%;
}

.wishlist-wrapper .wishlist-wrap-content > table > thead > tr > th:nth-child(4) {
    width: 10%;
}

.wishlist-wrapper .wishlist-wrap-content > table > thead > tr > th:nth-child(5) {
    width: 10%;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td:nth-child(3) .product-name {
    margin: 0;
    display: flex;
    align-items: center;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td:nth-child(3) .product-name > a {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1; /*KaÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ StÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±rda sÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±nÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±rlamak istiyorsanÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±z */
    -webkit-box-orient: vertical;
    overflow:hidden;
    width: 75%;
}


.wishlist-price p.price span.price-new {
    color: #333e48;
}

.wishlist-price p.price span.price-old {
    font-size: 12px;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td .mobileButton {
    display: flex;
    justify-content: center;
}

.wishlist-wrapper .wishlist-wrap-content > table > tbody > tr > td .mobileButton > button.btn-cartMobilw {
    padding: 1.3rem;
    border: 0;
    border-radius: 20px;
    font-size: 12px;
    width: 65%;
    font-weight: 600;
    color: #77838F;
}
/*wishlist-page-end*/

/*checkout/cart*/
.cart-action-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 9rem;
}

.cart-coupon-container {}

.cart-coupon-wrapper {
    width: 50%;
}

.cart-coupon-wrapper div#kuponKullan {
    width: 80%;
}

.cart-coupon-wrapper div#kuponKullan .boxedFix {
    display: flex;
    padding: 0;
    width: 100%;
}

.cart-coupon-wrapper div#kuponKullan .boxedFix > input {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border: 1px solid #ddd;
    padding: 1rem;
    height: 45px;
    width: 80% !important;
}

.cart-coupon-wrapper div#kuponKullan .boxedFix .coupon-input-text {
    width: 20%;
    display: flex;
}

.cart-coupon-wrapper div#kuponKullan .boxedFix .coupon-input-text input#button-coupon {
    height: 45px;
    margin: 0;
    background: #333E48;
    border-radius: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.cart-buttons-wrapper {
    width: 50%;
    display: flex;
    justify-content: end;
}

.cart-buttons-wrapper .mobileButton button.btn-cartMobilw {
    padding: 1.3rem;
    border: 0;
    border-radius: 25px;
    font-size: 12px;
    width: 65%;
    font-weight: 600;
    height: 45px;
    color: #fff;
    background: #f15927;
}

.cart-buttons-wrapper .mobileButton {
    display: flex;
    justify-content: end;
    width: 50%;
}

.cart-buttons-wrapper .mobileButton button.btn-cartMobilw a#btn-send2 {
    color: #fff;
    font-size: 15px;
}

.wishlist-wrapper .cart-wrap-content > table > tbody {
    border-bottom: 1px solid #ddd;
}


.wishlist-wrapper .cart-wrap-content > table > tbody > tr {
    border: none;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td {
    width: 16%;
    color: #000;
    font-size: 16px;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(2) {
    width: 5%;
    color: #A7A7A7;
}




.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(3) {
    width: 10%;
}



.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(3) .wishlist-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    width: 90px;
    height: 90px;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(3) .wishlist-image > a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(3) .wishlist-image > a > img {
    width: 100%;
    padding: 1rem;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(4) {
    width: 40%;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td .actions-link {
    background: none;
    position: unset;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(5) {
    width: 10%;
    padding: 0;
    height: 100%;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(6) {
    width: 12%;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(4) .product-name {
    margin: 0;
    display: flex;
    align-items: center;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(4) .product-name > a {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1; /*KaÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ StÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±rda sÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±nÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±rlamak istiyorsanÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±z */
    -webkit-box-orient: vertical;
    overflow:hidden;
    width: 75%;
}
.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(6) .quantity-box {
    display: flex;
    width: 100%;
    position: relative;
    background: no-repeat;
    border: none;
    justify-content: center;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(6) .quantity-box > input:nth-child(1) {
    position: relative;
    border-radius: 21px;
    border: 1px solid #ddd;
    padding: 0.7rem 0.5rem;
    width: 80%;
    padding-left: 1rem;
    height: 34px;
    color: #818181;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(6) .quantity-box > input:nth-child(2) {
    right: 51px !important;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(6) .quantity-box > input:nth-child(3) {}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(6) .quantity-box > input:not(:first-child) {
    position: absolute;
    z-index: 99999;
    right: 26px;
    top: 0px;
    font-size: 18px;
    cursor: pointer;
    width: 15px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: no-repeat;
    box-shadow: none;
    padding: 0;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(5) .wishlist-price {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(5) .wishlist-price p.pointed {
    margin: 0;
    font-size: 12px;
    text-wrap: wrap;
}

.wishlist-wrapper .cart-wrap-content > table > tbody > tr > td:nth-child(4) > a {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 75%;
    color: #333e48;
}

.cart-total-container {
    display: flex;
    justify-content: center;
    margin-top: 9rem;
    flex-direction: column;
    align-items: end;
    gap: 3rem;
}

.cart-total-container table {
    display: flex;
    /* flex-direction: column; */
    width: 45%;
    justify-content: space-between;
}

.cart-total-container .cart-total-header {
    width: 45%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}




.cart-total-container table > tbody > tr {
    display: flex;
    padding-bottom: 1rem;
    width: 100%;
    justify-content: space-between;
}

.cart-total-container table > tbody > .cargo-total > td {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 57%;
}

.cart-total-container table > tbody > tr > td:nth-child(2) span.btn-primary {
    padding: 0;
    background: none;
    color: #000;
    border: none;
    text-decoration: underline;
    font-weight: 600;
    font-size: 13px;
    width: 100%;
}

.cart-total-container .cart-total-header > span {
    color: #333e48;
    font-size: 25px;
    border-bottom: 3px solid #f15927;
    padding-bottom: .9rem;
}



.cart-total-container table > tbody > tr > td {
    display: flex;
    font-size: 14px;
    justify-content: end;
    color: #000;
}



.cart-total-container table > tbody > tr > td:nth-child(2) > span {
    display: flex;
    justify-content: end;
}

.cart-total-container table > tbody > tr > td:nth-child(3) {
    color: #000;
    font-weight: 700;
}

.cart-total-container table > tbody {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-total-container table > tbody > tr > th {
    color: #000;
    font-size: 14px;
}

.cart-total-container table > tbody > .cargo-total div#collapsecargo {
    width: 100%;
    margin-top: 1rem;
}

.cart-total-container table > tbody > .cargo-total div#collapsecargo .card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: end;
}

.cart-total-container table > tbody > .cargo-total div#collapsecargo .card-body > select, .cart-total-container table > tbody > .cargo-total div#collapsecargo .card-body > input {
    padding: 1rem;
    border-radius: 25px;
    border: 1px solid #ddd;
    color: #757575;
    font-size: 12px;
    width: 100%;
}

.cart-total-container table > tbody > .cargo-total div#collapsecargo .card-body > button {
    width: 55%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ddd;
    color: #77838F;
    transition: .3s ease;
}

.cart-total-container table > tbody > .cargo-total div#collapsecargo .card-body > button:hover {
    color: #fff;
    background: #77838f;
    box-shadow: 0 4px 11px rgba(119, 131, 143, 0.35);
}

.cart-total-container table > tbody > tr:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

/*checkout/cart-end*/


/*kariyer*/
.career-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 0;
}

.career-container .career-top-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 3rem;
}

.career-container .career-bottom-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
}

.career-container .career-bottom-content .career-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
}

.career-container .career-bottom-content .career-wrap .career-image {
    width: 8%;
    border: 1px solid #ddd;
}

.career-container .career-bottom-content .career-wrap .career-image > img {
    width: 100%;
}

.career-container .career-top-content .career-header > span {
    font-size: 60px;
    color: #333e48;
    font-weight: 300;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.career-container .career-top-content .career-text {}

.career-container .career-top-content .career-text > span {
    text-align: center;
    display: flex;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 37px;
    color: #333e48;
    font-weight: 300;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.career-container .career-bottom-content .career-wrap .career-button {
    width: 17%;
}

.career-container .career-bottom-content .career-wrap .career-button > a {
    border: 1px solid #ddd;
    padding: 1.3rem 1rem;
    border-radius: 30px;
    width: 60%;
    color: #77838F;
    transition: .3s ease;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: center;
}

.career-container .career-bottom-content .career-wrap .career-title {
    width: 35%;
}

.career-container .career-bottom-content .career-wrap .career-number-of-ads {
    width: 15%;
}

.career-container .career-bottom-content .career-wrap .career-status {
    width: 15%;
}

.career-container .career-bottom-content .career-wrap > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.career-container .career-bottom-content .career-wrap .career-button > button:hover {
    background: #77838F;
    color: #ffff;
}
body.information-information-57 .informationClass .information-page-content .information-header {
    display: none;
}
.career-container .career-bottom-content .career-wrap > div > span {
    font-size: 17px;
    color: #333E48;
    font-weight: 600;
}
/*kariyer-end*/

/*order-tracking*/
.order-tracking-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.order-tracking-container .order-tracking-top-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.order-tracking-container .order-tracking-top-content .order-tracking-text {
    width: 80%;
}

.order-tracking-container .order-tracking-top-content .order-tracking-text > span {
    font-size: 15px;
    text-align: center;
    display: block;
    font-weight: 400;
    color: #333E48;
    line-height: 30px;
}

.order-tracking-container .order-tracking-top-content .order-tracking-header > span {
    font-size: 38px;
    font-weight: 500;
    color: #333E48;
}

.order-tracking-container .order-tracking-bottom-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
}

.order-tracking-container .order-tracking-bottom-content .order-tracking-input-wrapper {
    display: flex;
    justify-content: space-between;
}

.order-tracking-container .order-tracking-bottom-content .order-tracking-input-wrapper .order-tracking-input-wrap {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 1rem;
}

.order-tracking-container .order-tracking-bottom-content .order-tracking-input-wrapper .order-tracking-input-wrap > input {
    width: 85%;
    padding: 1rem;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 14px;
    padding-left: 1.5rem;
}

.order-tracking-container .order-tracking-bottom-content > button {
    width: 12%;
    padding: 1rem;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-weight: 600;
    color: #77838f;
    transition: .3s ease;
}

.order-tracking-container .order-tracking-bottom-content > button:hover {
    background: #77838f;
    color: #fff;
}

.order-tracking-container .order-tracking-bottom-content .order-tracking-input-wrapper .order-tracking-input-wrap > label {
    color: #000;
    font-size: 15px;
    font-weight: 700;
}
.order-tracking-container .order-tracking-top-content .order-tracking-text > span > a {
    color: #f15927;
    font-weight: 700;
}
/*order-tracking-end*/

/*blog-list*/
.blog-list-container {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 7rem;
}

.blog-list-container .blog-list-left {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-list-container .blog-list-categories {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.blog-list-container .blog-list-left .blog-list-content {
    width: 100%;
    display: flex;
    gap: 2rem;
}

.blog-list-container .blog-list-left .blog-list-content .blog-list-image {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-list-container .blog-list-left .blog-list-content .blog-list-image > img {
    min-height: 22.625rem;
    height: inherit;
    -o-object-fit: cover;
    object-fit: cover;
    overflow-clip-margin: content-box;
    overflow: clip;
}

.blog-list-container .blog-list-left .blog-list-content .blog-list-information {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
}
.blog-list-container .blog-list-left .blog-list-content .blog-list-information .blog-list-title > span {
    font-size: 22px;
    color: #000;
    font-weight: 500;
}

.blog-list-container .blog-list-left .blog-list-content .blog-list-information .blog-list-date {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.blog-list-container .blog-list-left .blog-list-content .blog-list-information .blog-list-date > p {
    margin: 0;
    width: 5px;
    height: 5px;
    background: #878787;
    border-radius: 50%;
}

.blog-list-container .blog-list-left .blog-list-content .blog-list-information .blog-list-date > span {
    color: #878787;
}

.blog-list-container .blog-list-left .blog-list-content .blog-list-information .blog-list-description > span {
    font-size: 14px;
    line-height: 25px;
}


.blog-list-container .blog-list-left .blog-list-content .blog-list-information .blog-list-read > a {
    width: 25%;
    display: flex;
    padding: 1rem;
    background: #EFECEC;
    border-radius: 25px;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #333e48;
    transition: .3s ease;
}

.blog-list-container .blog-list-left .blog-list-content .blog-list-information .blog-list-read > a:hover {
    background: #333e48;
    color: #fff;
}

.blog-list-content:not(:first-child) {
    border-top: 1px solid #ffac91;
    padding-top: 2rem;
}

.blog-list-container .blog-list-categories .blog-list-category-content {}

.blog-list-category-content > ul {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
}

.blog-list-categories-title {
    position: relative;
}

.blog-list-categories-title > span {
    font-size: 20px;
    color: #333E48;
    border-bottom: 2px solid #f15927;
    padding-bottom: 7px;
}

.blog-list-container::before {
    display: none;
}

.blog-list-container.container::after {
    display: none;
}

.blog-list-categories-title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #ddd;
    bottom: -9px;
    left: 0;
}

.blog-list-category-content > ul > li {
    border-bottom: 1px solid #eee;
    padding: 1rem;
}

.blog-list-category-content > ul > li > a {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #000000;
    font-size: 14px;
    transition: .3s ease;
}

.blog-list-category-content > ul > li > a:hover {font-weight: 700;}
/*blog-list-end*/

/*blog-detail*/
.blog-detail-container.container {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 11rem;
}

.blog-detail-container.container::before {
    display: none;
}

.blog-detail-container.container::after {
    display: none;
}

.blog-detail-container .blog-detail-left {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-detail-container .blog-list-categories {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.blog-detail-container .blog-detail-left .blog-detail-img {}

.blog-detail-container .blog-detail-left .blog-detail-img > img {
    width: 100%;
}

.blog-detail-container .blog-detail-left .blog-detail-title > span {
    font-size: 22px;
    color: #000;
    font-weight: 500;
}

.blog-detail-date span {
    color: #878787;
}

.blog-detail-date {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.blog-detail-description {
    width: 80%;
}

.blog-detail-description > span {
    font-size: 18px;
}

.blog-detail-description > span > p {
    margin: 0;
}

.blog-detail-tag-title {
    position: relative;
}

.blog-detail-tag-title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #ddd;
    bottom: -9px;
    left: 0;
}

.blog-detail-tag-content {}

.blog-detail-tags {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
}

.blog-detail-tag-title > span {
    font-size: 20px;
    color: #333E48;
    border-bottom: 2px solid #f15927;
    padding-bottom: 6px;
}
.blog-detail-tag-content > span {
    font-size: 15px;
    display: flex;
    text-wrap: wrap;
}
/*blog-detail-end*/

.cantact-page-social > ul > li {
    width: 20%;
}

.bayi-page-wrapper .cantact-page-form {
    width: 100%;
}

.bayi-page-wrapper .cantact-page-form .contact-page-title {
    margin-bottom: 2rem;
}