@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
body {
    background: #fafafa;
    font-family: 'Quicksand', sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    
}  

/* Reset */
a {
    color: #1c7ad2;
}

a:hover {
    text-decoration: none;
    color: #095c9b;
}


/* Overlay */
.overlay {
    display: flex;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, .4);
    justify-content: center;
    align-items: center;
}

.overlay .spin {
    color: #1c7ad2;
    width: 3rem;
    height: 3rem;
    font-size: 20px;
}


/* Opacity */
.op-black {
    background: rgba(0,0,0,.5);
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.op-black.hide {
    visibility: hidden;
    opacity: 0;
}

.op-black.show {
    visibility: visible;
    opacity: 1;
}

/* Header (Desktop) */
header.desktop  {
    background: #fff;
    
}

header.desktop .h-contact {
    background: #f5f5f5;
}

header.desktop .h-contact .info {
    height: 40px;
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

header.desktop .h-contact .info .item {
    font-size: 13px;
    color: #666;
    margin-right: 20px;
    font-weight: 500;
}

header.desktop .h-contact .info .item.wp {
    color: #0e9e26;
    font-weight: bold;
}

header.desktop .h-contact .info .item i {
    margin-right: 3px;
    font-size: 16px;
}

header.desktop .h-contact .info .item.wp i {
    font-weight: normal;
    font-size: 20px;
}

header.desktop .h-contact .social-media {
    height: 40px;
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}

header.desktop .h-contact .social-media a {
    margin-left: 10px;
    font-size: 17px;
    color: #555;
}

header.desktop .header-area {
    height: 100px;
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

header.desktop .header-area.last {
    align-items: flex-end;
}

header.desktop .logo {
    align-items: flex-start;
    -webkit-align-items: flex-start; 
}

header.desktop .logo a img {
    max-height: 100px;
    max-width: 100% !important;
}

header.desktop .search {
    width: 100%;
    border: 1px solid #919191;
    border-radius: 30px;
    max-width: 1151px;
    position: relative;
}

header.desktop .search form {
    width: 100%;
}

header.desktop .search form .input-box {
    width: 100%;
    padding-right: 45px;
    box-sizing: border-box;
}

header.desktop .search form input {
    float: left;
    color: #666;
    font-weight: 500;
    width: 100%;
    font-size: 14px;
    border-color: transparent !important;
    border-width: 0 !important;
    background: transparent !important;
    height: 45px;
    border-right: 0;
    border-radius: 0;
    border-width: 2px;
    box-shadow: none;
    padding-left: 20px;
}

header.desktop .search form input::placeholder {
    color: #666;
}

header.desktop .search:hover {
    border-color: #9D0063;
}

header.desktop .search form .btn-send {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 99999px;
    background: #9D0063;
    border-width: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 5px;
    margin: 5px;
}

header.desktop .search:hover form .btn-send {
    background: #9D0063;
}

header.desktop .easy-autocomplete-container ul {
    margin-top: 47px;
}
 
header.desktop .header-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

header.desktop .header-bar .bar-user {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 30px;
    padding: 10px;
  

}

header.desktop .header-bar .bar-user i {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9D0063;
    font-size: 24px;
    margin-right: 10px;
}

header.desktop .header-bar .bar-user .link {
    display: flex;
    flex-direction: column;
}

header.desktop .header-bar .bar-user .link a {
     color: #222;
    font-weight: 500;
    font-size: 14px;
    display: block;
}

header.desktop .header-bar .bar-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    color: #fff;
    height: 48px;
    border-radius: 0px;
    padding: 10px;
    flex: 1;

}

header.desktop .header-bar .bar-cart .icon {
    margin-right: 5px;
    position: relative;
}

header.desktop .header-bar .bar-cart .icon i {
    font-size: 25px;
}

header.desktop .header-bar .bar-cart .icon .count {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #9D0063;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
}

header.desktop .header-bar .bar-cart .name {
    color: #222;
    margin-left: 6px;
    font-weight: 500;
    font-size: 14px;
}

header.desktop .menu {
    background: #9e0465;
    height: 52px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    
}


header.desktop .h-center {
   margin-top:50px;
    box-shadow: 0 12px 12px rgba(0, 0, 0, .05);
}

/* Mega Menu */
header.desktop .menu .nav .open>a,
header.desktop .menu .nav .open>a:hover, 
header.desktop .menu.nav .open>a:focus{
    color:#ccc; background-color:inherit;  border-color:inherit
}

header.desktop .menu .dropdown-menu>li>a {
 display: block;
    padding: 8px 12px;
    clear: both;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    white-space: inherit;
}

header.desktop .menu .dropdown-menu>li>a:hover {
    background: #d2d0d0;
}

header.desktop .nav {
    display: flex !important;
    flex-direction: row !important; 
    height: 52px !important;
    justify-content: space-between;
}

header.desktop .nav .nav-item {
    display: flex;
}

header.desktop .nav .nav-link {
    flex: 1;
    height: 52px;
    justify-content: left;
    align-items: center;
    display: flex;
    font-size: 15px;
    font-weight: 400;
    padding: 0 10px;
    margin: 0;
    color: #fff;
    background: transparent;
    text-align: left;
    
    
}

header.desktop .nav .nav-link img {
    max-height: 30px;
    margin-right: 5px;
}


.dropdown-toggle::after {
    display: none;
}

.navbar-nav .dropdown-menu {
    margin-top: 0 !important;
    border-radius: 0 !important;
    position: absolute !important;
    top: 52px !important; 
    left: 0px !important;
    right: 0 !important;
    background: #ffffff;
    border-left: 1px solid #dcdbdb !important;
    border-right: 1px solid #dcdbdb !important;
    border-bottom: 1px solid #dcdbdb !important;
    padding: 0 !important;
    width:250px;
}


/* Mega Menu Container */
.mega-menu-container {
    padding: 10px;
}

.mega-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 10px;
    float: left;
}
 
.mega-menu-container ul li {
    list-style: none;
    padding: 0;
    margin: 0
}

.mega-menu-container ul li a {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.mega-menu-container ul li a.sub-title {
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
}

.mega-menu-container ul li a:hover {
    text-decoration: underline;
}

/* Mobile Header */
.mobile-header-space {
    height: 60px;
    display: none; 
}

header.mobile {
    display: none;
    background: #fff;
    height: 50px;
    box-shadow: 0 1px 1px rgba(0,0,0,.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

header.mobile .left {
    width: 30%;
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    padding: 5px;
}

header.mobile .center {
    width: 40%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header.mobile .right {
    width: 30%;
    float: left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

header.mobile .logo img {
    max-width: 213px;
    max-height: 60px;
}

header.mobile .icon-group {
    position: relative;
}

header.mobile .icon-group {
    position: relative;
    color: #333;
    font-size: 21px;
}

header.mobile .icon-group .badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 18px;
    max-width: 25px;
    padding: 0;
    text-align: center;
    height: 18px;
    background: #9D0063;
    font-size: 12px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header.mobile .mobile-search {
    padding: 10px 10px;
    
}

header.mobile .mobile-search form {
    width: 100%;
}

header.mobile .mobile-search form .input-box {
    width: 100%;
}

header.mobile .mobile-search form input {
    float: left;
    color: #444;
    width: 100%;
    font-size: 15px;
    border-color: transparent;
    background: #fff !important;
    height: 40px;
    border: 1px solid #919191;
    border-radius:10px;
    box-shadow: none;
    outline: 0 !important;
    
}

header.mobile .mobile-search form input::placeholder {
    color: #444;
}

header.mobile .mobile-search form input:focus,
header.mobile .mobile-search form input:hover {
    border-color: #919191 !important;
}

header.mobile .mobile-search form .btn-send {
    float: right;
    height: 30px;
    border: 0;
    background: transparent !important;
    color: #333;
    font-size: 19px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 5px;
    margin: 5px;
}

/* Sidebar User */
.sidebar-user {
    background: #fff;
    width: 250px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 21;
    right: 0;
    margin-right: -250px;
}

.sidebar-user.active {
    margin-right: 0;
}

.sidebar-user .title {
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-user .title .btn-close {
    color: #fff;
}

.sidebar-user .login-menu a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-user .login-menu a i {
    width: 30px;
    margin-left: 10px;
    text-align: left;
}

.sidebar-user .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-user .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-user .footer-links ul {
    margin: 0;
    padding: 0;
}

.sidebar-user .footer-links ul li {
    padding: 0;
    list-style: none;
}

.sidebar-user .footer-links ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-user .footer-links ul li a.wp i {
    color: #21bd5c;
}

.sidebar-user .footer-links ul li a i {
    text-align: center;
    width: 40px;
    font-size: 16px;
}

/* Sidebar Menu */
.sidebar-menu {
    background: #fff;
    width: 310px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 9999;
    left: 0;
    margin-left: -310px;
}

.sidebar-menu.active {
    margin-left: 0;
}

.sidebar-menu .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-menu .title {
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu .title .btn-close {
    color: #fff;
}

.sidebar-menu .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu .links a {
    display: block;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-menu .links a i {
    float: right;
}

.sidebar-menu .categories {
    /*display: none;*/
}

.sidebar-menu .categories ul {
    margin: 0;
    padding: 0;
}

.sidebar-menu .categories ul li {
    padding: 0;
    list-style: none;
}

.sidebar-menu .categories ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.sidebar-menu .categories ul li a .name {
    width: 80%;
}

.sidebar-menu .categories ul li a .icon {
    color: #777;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 18px;
}

.sidebar-menu .categories ul .multi {
    display: none;
}

.sidebar-menu .categories ul .multi a {
    padding-left: 20px;
}

.sidebar-menu .categories ul .multi .multi a {
    padding-left: 40px;
}

.sidebar-menu .categories ul .multi .multi .multi a {
    padding-left: 60px;
}

/* Stores */
.stores {
    background: #fff;
    border-top: solid 0px #e6e6e6;
    padding: 10px 0;
}

.stores .cards {
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row
}

.stores .card {
    border: none;
    box-shadow: none;
    margin: 0 !important;
    border-left: 1px solid #e6e6e6;
}

.stores .card:first-child {
    border-left: 0;
}

.stores .card .card-body {
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 10px;
}

.stores .card .card-body img {
    max-height: 80%;
    max-width: 60%!important;
    margin: 0 auto;
}

.stores .card .card-header {
    display: none;
}

.stores .text-white {
    font-weight: bold;
    font-size: 12px !important;
}

/* Footer */
footer {
    background: #fff;
}

footer .bb {
}

footer .logo-area {
    text-align: left;
    margin: 15px 0;
}

footer .logo-area .logo img {
    max-height: 100px;
    max-width: 230px;
}

footer .logo-description {
    margin-top: 15px;
}

footer .info {
    padding: 25px 0;
}

footer .title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 15px;
}

footer .title-2 {
    color: #00aaff;
    font-size: 13px;
    
}

footer .title-3 {
    color: #333;
    font-size: 17px;
    
}

footer .secure .description {
    color: #000;
    margin: 5px 0;
}

footer .secure img {
    opacity: .5;
}

footer .info ul {
    padding: 0;
    margin: 0;
}

footer .info ul li {
    list-style: none;
    padding: 3px 0;
    color: #000;
    font-size: 13px;
}

footer .info ul li a {
    display: block;
    color: #000;
    font-size: 13px;
    position: relative;
    padding-left: 0px;
}



footer .info ul li a:hover {
    color: #333;
}

footer .bar {
    padding: 10px 0;
    background: #fff;
}

footer .bar a {
    color: #333;
    text-align: center;
}

footer .bar a:hover {
    color: #333;
}

footer .bar p {
    margin: 0;
    color: #333;
}

footer .bar .right-image {
    text-align: right !important;
}
    
footer .social-media {
    display: -webkit-flex;
    -webkit-align-items: flex-start; 
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
}

footer .social-media a {
    margin-right: 10px;
    font-size: 22px;
    color: #333;
}

footer .social-media a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
 

    header.desktop {
        display: none;
    }

    header.mobile {
        display: block;
    }
    
    .stores .cards {
        display: block;
        text-align: center;
    }

    .stores .card {
        display: inline-block;
        border-right: none;
        margin: 0;
        max-width: 45%;
        height: 50px;
        border: 0
    }

    footer .bar p {
        text-align: center !important;
    }
    
    footer .bar .right-image {
        margin: 10px 0;
        text-align: center !important;
    }

    footer .logo-area {
        display: none;
    }
    
    footer .bb {
        border-top: 0;
        border-bottom: 0;
    }

    footer .info {
        padding-top: 0;
    }

    footer .info .title {
        text-align: center !important;
        color: #000;
        border: 1px solid #000;
        padding: 8px;
        position: relative;
    }

    footer .info .title::after {
        content: "+";
        right: 10px;
        top: 3px;
        bottom: 0;
        position: absolute;
        font-size: 20px;
        margin-bottom: 10px;
    }

    footer .info .fs {
        display: none;
        text-align: center !important;
        border: 1px solid #000;
        margin-bottom: 15px;
        color: #000 !important;
    }

    footer .info ul {
        margin: 0;
    }

    footer .info ul li {
        color: #000 !important;
    }

    footer .info ul li a {
        color: #000;
    }

    footer .info ul li a:before {
        display: none;
    }

    footer .social-media {
        justify-content: center;
        margin: 10px 0;
    }

    footer .secure {
        text-align: center !important; 
        margin: 10px 0;
    }
    
    
    
.addons-mobile-menu {
    box-shadow: 0 -10px 30px -5px rgba(0,0,0,.15);
    position: fixed;
    width: 100%;
    bottom: 0;
    -webkit-overflow-scrolling: touch;
    z-index: 9;
    display: block
}

.addons-mobile-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%
}

.addons-mobile-menu ul li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%
}

.addons-mobile-menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    -webkit-transition: 75ms ease-out;
    transition: 75ms ease-out;
    position: relative;
    height: 100%;
    font-weight: 500;
    color:#fff;
    border-right: 1px solid #bb127c;
}

.addons-mobile-menu ul li a .count {
    position: absolute;
    top: 5%;
    right: 20%;
    min-width: 18px;
    max-width: 25px;
    padding: 0;
    text-align: center;
    height: 18px;
    background: #d21c1c;
    font-size: 12px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}


.addons-mobile-menu {
    height: 65px;
    background: #9D0063;
    border-top: 1px solid #9D0063;
}

}

.p-g-mod-t-44 .banner-item .image img {
    border-radius: 10px;
}


.pattern-group .p-g-mod {
    margin-bottom: 2px;
}



@media (min-width: 1240px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1320px !important;
    }
}


@media (max-width: 600px) {
  
    
    .whatsapp-fixed {
    position: fixed;
    left: 0px !important;
    bottom: 0px !important;
    width: 100%;
    z-index: 9999;
    font-size: 14px;
    background: #33aa29;
    border-color: #33aa29;
    color: #fff;
    font-weight: 500;
    margin: 0px 0px 0px 0px !important;
    height: 38px;
        text-align: center;
}




.whatsapp-fixed .btn-wp {
    display: inline-block;
    font-weight: 600;
    color: #ffffff !important;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
    
    
.ana {
    margin: 0px 0px;
}
    


    
}



.p-g-mod-t-10.p-g-mod-trans .p-g-mod-body a:hover,.p-g-mod-t-16.p-g-mod-trans .p-g-mod-body li:hover,.p-g-mod-t-2.p-g-mod-trans .p-g-mod-body a:hover,.p-g-mod-t-58.p-g-mod-trans .p-g-mod-body li:hover,.p-g-mod-t-60.p-g-mod-trans .p-g-mod-body a:hover,.pattern-group .p-g-mod.p-g-mod-trans {
    background: 0 0
}



@media only screen and (min-width: 600px) {
.whatsapp-fixed {
  position: fixed;
    left: 10px;
    bottom: 10px;
    width: 88px;
    z-index: 9999;
    background: #33aa29;
    border-radius: 60px;
}

.whatsapp-fixed .btn-wp {
    display: inline-block;
    font-weight: 400;
    color: #ffffff !important;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
}


.card-product {
    border: 1px solid rgb(204, 204, 204) !important;
    border-radius: 15px;
    background: #fff;
}


.card-product .card-product-inner .image-wrapper .image img {
    border-radius: 10px;
}

.pattern-group .p-g-mod-t-21, .pattern-group .p-g-mod-t-22, .pattern-group .p-g-mod-t-23, .pattern-group .p-g-mod-t-24, .pattern-group .p-g-mod-t-25, .pattern-group .p-g-mod-t-35{
    margin-bottom: 0;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 10px;
    margin-top: 10px;
}

.card-product .card-product-inner .product-label.top-left {
    top: 0;
    left: -10px;
    margin-bottom: 5px;
}


.category-filter-list .list-wrap[data-simplebar] {
    max-height: 350px;
}

.card-product .card-product-inner .buttons .btn-cart {
    font-size: 12px;
    background: #9D0063;
    border-color: #9D0063;
    color: #fff;
    font-weight: 500;
}

.card-product .card-product-inner .price-group .prices .sale-price {
    font-size: 17px;
    font-weight: bold;
    color: #9D0063;
}


.btn {
  
    border-radius: 0px;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    line-height: initial;
}

.product-profile-1 .carousel .carousel-inner {
    border: 1px solid #eaeaea;
    border-radius: 10px;
}

.product-profile-1 .product-label.top-left {
    top: 15px;
    left: 0px;
    margin-bottom: 5px;
}



.newuye{/* Modüle Verilen Css */
    border: 1px solid #e2e2e2;
    padding: 40px!important;
    border-radius: 5px;
}
.mws-form-inline .form-control{
    padding: 24px;
    font-size: 12px;
}
.modal-content {
    padding: 10px;
    border-radius: 10px;
}
.modal-header{
    border-bottom: 0;
    padding: 5px 15px;
}
.modal-p {
    line-height: 19px;
    letter-spacing: -0.03em;
    color: #A1A1A1;
    font-size: 13px;
    font-weight: 400;
}
.modal-body .form-control{
    padding: 22px;
    font-size: 13px;
}
.yeni-giris {
    margin-bottom: 1rem;
    border: 1px solid #000;
    padding: 10px 15px;
    border-radius: 5px;
}
.sub-unuttum2 {
    padding: 0!important;
    border: 0!important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
}
.pass{
    display: flex;
    justify-content: center;
}
.pass-sub{
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.02em;
    text-decoration-line: underline;
    color: #A1A1A1;
}
.kvkk a{
    font-weight: 600;
}
button.btn.sub-unuttum {
    text-decoration: underline;
    font-size: 13px;
    color: #a1a1a1;
}
.giris-border {

    padding: 20px;
    background: #fff;
}
.pattern-group .p-g-mod .p-g-mod-header {
    border: none;
}
.login-body .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info,.login-body  .pattern-group .pattern-group-header .p-g-h-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pattern-group .p-g-tab-wrapper .p-g-t-nav .p-g-t-n-header .p-g-t-n-info .p-g-t-n-i-title, .pattern-group .pattern-group-header .p-g-h-info .p-g-h-i-title {
    font-size: 21px;
    font-weight: 500;
    margin: 0;
    line-height: initial;
}
.login-body .p-g-mod-t-4 .nav-tabs .nav-item.show .nav-link, .login-body .p-g-mod-t-4 .nav-tabs .nav-link.active {
    border: 1px solid #9D0063 !important;
    background: #9D0063 !important;
    color: white!important;
}
.login-body .p-g-mod-t-4 .nav-tabs .nav-item {
    flex: 1;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-weight: 600;
    transition: all var(--transition-time);
    font-size: 16px;
    padding: 13px;
}
.login-body .p-g-mod-t-4 .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 21px;
    font-weight: 500;
    margin: 0;
    line-height: initial;
    color: #18181A;
}
.login-fb-g {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.login-form .form-control {
    padding: 24px;
    font-size: 12px;
}
.btn-google-login {
    background: #ffffff!important;
    background-image: none;
    text-shadow: none!important;
    color: #000!important;
    border: 1px solid #e2e2e2!important;
}
.btn-fb-login {
    background: #ffffff!important;
    background-image: none;
    text-shadow: none!important;
    color: #000!important;
    border: 1px solid #e2e2e2!important;
}

@media (max-width: 991px) {
   .giris-border {
    padding: 10px;
    background: #fff;
    margin-top: 100px;
}

  .kategori{
    margin-top: 100px;
}

}

.pattern-group .p-g-mod .p-g-mod-header {
    padding: 10px 15px;
    height: 30px;
    margin-bottom: 10px;
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #e2dfe396;
    border-radius: 7px 7px 0px 0px;

}


.nav-tabs {
    border-bottom: 0px solid #dee2e6;
}


.nav {
    margin-bottom: 0px;
}

.addons-mobile-menu ul li a .icon {
    color: #333333;
    font-size: 15px;
}


[class*=" coreicon-"]:before, [class^=coreicon-]:before {
    speak: never;
    text-decoration: inherit;
    zoom: 115%;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: coreicon;
    font-style: normal;
    font-weight: 400;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    zoom: 115%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.addons-mobile-menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    -webkit-transition: 75ms ease-out;
    transition: 75ms ease-out;
    position: relative;
    height: 100%;
    font-weight: 500;
}


.addons-campaign-bar .url {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none
}

.addons-campaign-bar .container .text,.addons-campaign-bar .image {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 500
}

.addons-campaign-bar .image img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%
}

.addons-mobile-menu {
    box-shadow: 0 -10px 30px -5px rgba(0,0,0,.15);
    position: fixed;
    width: 100%;
    bottom: 0;
    -webkit-overflow-scrolling: touch;
    z-index: 9;
    display: block
}

.addons-mobile-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%
}

.addons-mobile-menu ul li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%
}

.addons-mobile-menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    -webkit-transition: 75ms ease-out;
    transition: 75ms ease-out;
    position: relative;
    height: 100%;
    font-weight: 500
}

.addons-mobile-menu ul li a .count {
    position: absolute;
    top: 5%;
    right: 20%;
    min-width: 18px;
    max-width: 25px;
    padding: 0;
    text-align: center;
    height: 18px;
    background: #d21c1c;
    font-size: 12px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

 
.card-product:hover {
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(268deg, #444444, #f37431) border-box;
    border: 2px solid transparent !important;
}

.breadcrumb {
    margin-bottom: 0rem;
}

.btn-secondary {
    color: #424242;
    background-color: #e1e1e1;
    border-color: #cbcbcb;
}

.card {
    border-radius: 0px;
}

.mb-3, .my-3 {
    margin-bottom: 0rem !important;
}


.h2, h2 {
    font-size: 1rem;
}

.h3, h3 {
    font-size: 1rem;
}

.h4, h4 {
    font-size: 1rem;
}



.mws-form-inline .form-control {
    padding: 24px;
    font-size: 15px;
}