/* Favourite List */
.favorite-list td, .favorite-list th {
    padding: 5px
}

.favorite-list .title {
    color: #333;
}

.favorite-list .btn-cart {
    font-size: 13px;
}

.favorite-list .remove {
    color: #888;
    font-size: 19px;
}


/* Pattern Module 10 */

.banner-product-type-10 {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.banner-product-type-10 a {
    color: #333;
}

/* Pattern Module 13 */
.card.card-pattern-type-13 {
    background: #fff;
}

.card.card-pattern-type-13 .card-header {
    background: #ff0000;
    padding: 10px;
}

.card.card-pattern-type-13 .card-header .title {
    color: #fff;
    font-size: 14px;
}

.card-pattern-type-13 .p-card {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    padding: 10px;
}

.card-pattern-type-13 .row .col-md-6:nth-child(4n-1) .p-card,
.card-pattern-type-13 .row .col-md-6:nth-child(4n) .p-card {
    background: #eeeeee;
}

.card-pattern-type-13 .p-card img {
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

.card-pattern-type-13 .p-card .desc {
    flex: 6;
    width: 300px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.card-pattern-type-13 .p-card .desc .title {
    color: #333;
    font-weight: 600;
    font-size: 13px;
}

.card-pattern-type-13 .p-card .desc .price {
    color: #ff0000;
    font-weight: 600;
    text-align: right;
    width: 100%;
    padding-right: 10px;
    font-size: 16px;
}

/* Pattern Module 21 */
.pattern-module-21 .module-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    text-align: left;
    padding: 10px 0;
}

.pattern-module-21 .card {
    background: #fff;
}

.pattern-module-21 .card-header {
    background: #ff0000;
    padding: 10px;
}

.pattern-module-21 .card-header .title {
    color: #fff;
    font-size: 14px;
}

.pattern-module-21 .p-card {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    padding: 10px;
}

.pattern-module-21 .row .col-md-6:nth-child(4n-1) .p-card,
.pattern-module-21 .row .col-md-6:nth-child(4n) .p-card {
    background: #eeeeee;
}

.pattern-module-21 .p-card img {
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

.pattern-module-21 .p-card .desc {
    flex: 6;
    width: 300px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.pattern-module-21 .p-card .desc .title {
    color: #333;
    font-weight: 600;
    font-size: 13px;
}

.pattern-module-21 .p-card .desc .price {
    color: #ff0000;
    font-weight: 600;
    text-align: right;
    width: 100%;
    padding-right: 10px;
    font-size: 16px;
}

/* Pattern Module 22 */
.pattern-module-22 .nav-panel {
    overflow-y: auto;
}

.pattern-module-22 .nav-pills {
    background: #f2f2f2;
    border: 1px solid #ddd;
    border-bottom: 3px solid #ddd;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 65px;
    min-width: 500px; 
}

.pattern-module-22 .nav-pills li {
    flex: 1;
    border-right: 1px solid #ddd;
}

.pattern-module-22 .nav-pills li:last-child {
    border-right: 0
}

.pattern-module-22 .nav-pills li a {
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    margin: 0;
    padding: 0;
}

.pattern-module-22 .nav-pills li a:hover,
.pattern-module-22 .nav-pills li a.active {
    background: #fff;
    border-radius: 0;
    color: #333;
}

.pattern-module-22 .nav-pills li a img {
    max-width: 100%;
    max-height: 60%
}

/* Sidebar Cart */
.sidebar-cart-black {
    background: rgba(0,0,0,.5);
    position: fixed;
    z-index: 21;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.sidebar-cart-black.hide {
    visibility: hidden;
    opacity: 0;
}

.sidebar-cart-black.show {
    visibility: visible;
    opacity: 1;
}

.sidebar-cart {
    background: #fff;
    width: 300px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 21;
    right: 0;
    margin-right: -300px;
    display: flex;
    flex-direction: column;
}

.sidebar-cart.active {
    margin-right: 0;
}

.sidebar-cart .title {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    font-size: 25px;
    font-weight: 600;
    color: #666;
    position: relative;
}

.sidebar-cart .title .btn-close {
    color: #555;
    position: absolute;
    right: 25px;
    font-size: 25px;
}

.sidebar-cart .wrap-items {
    flex: 1;
}

.sidebar-cart .summary {
    display: flex;
    flex-direction: column;
    border-top: 2px solid rgba(0, 0, 0, .1);
    padding: 10px;
}

.sidebar-cart .summary .total {
    text-align: center;
    padding: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #444;
}

.sidebar-cart .summary .shipping {
    text-align: center;
    padding: 0 0 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

.sidebar-cart .summary .btn-secondary {
    background: rgba(0, 0, 0, .1);
    border: 0;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 7px;
}

.sidebar-cart .summary .btn-secondary:hover {
    background: rgba(0, 0, 0, .2);
}

.sidebar-cart .wrap-items {
    overflow: auto;
}

.sidebar-cart .wrap-items .item {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 15px;
}

.sidebar-cart .wrap-items .item .image {
    margin-right: 10px;
}

.sidebar-cart .wrap-items .item .name {
    color: #7ca646;
    font-weight: 500
}

.sidebar-cart .wrap-items .item .name:hover {
    text-decoration: underline;
}

.sidebar-cart .wrap-items .item .btn-remove {
    margin-top: 5px
}

/* Pattern Module 23 */
.pattern-module-23 .module-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    text-align: left;
    padding: 10px 0;
}

.pattern-module-23 .card {
    background: #fff;
}

.pattern-module-23 .card-header {
    background: #ff0000;
    padding: 10px;
}

.pattern-module-23 .card-header .title {
    color: #fff;
    font-size: 14px;
}

.pattern-module-23 .p-card {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    padding: 10px;
}

.pattern-module-23 .row .col-md-6:nth-child(4n-1) .p-card,
.pattern-module-23 .row .col-md-6:nth-child(4n) .p-card {
    background: #eeeeee;
}

.pattern-module-23 .p-card img {
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

.pattern-module-23 .p-card .desc {
    flex: 6;
    width: 300px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.pattern-module-23 .p-card .desc .title {
    color: #333;
    font-weight: 600;
    font-size: 13px;
}

.pattern-module-23 .p-card .desc .price {
    color: #ff0000;
    font-weight: 600;
    text-align: right;
    width: 100%;
    padding-right: 10px;
    font-size: 16px;
}


/* Pattern Module 24 */
.pattern-module-24 .item {
    margin: 1%;
}

/* Pattern Module 26 */
.pattern-module-26 {
    
}

.pattern-module-26 .nav {
    display: flex;
    background: transparent;
    
}

.pattern-module-26 .nav .nav-item {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, .25)
}

.pattern-module-26 .nav .nav-item:last-child {
    border-right: 0;
}

.pattern-module-26 .nav .nav-item .nav-link {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    height: 45px;
}

.pattern-module-26 .nav .nav-item .nav-link:hover,
.pattern-module-26 .nav .nav-item .nav-link.active {
    background: transparent;
    color: #000
}

.pattern-module-26 .owl-dots {
    display: none;
}

.pattern-module-26 .owl-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pattern-module-26 .owl-buttons a {
    margin: 0 7px;
    font-size: 25px;
    color: #333;
}

.pattern-module-26 .owl-buttons a:hover {
    color: #000;
}

/* Pattern Module 27 */
.pattern-module-27 {

}

.pattern-module-27 .box {
    padding: 0 20px;
    margin: 20px 0;
    position: relative;
}

.pattern-module-27 .col-12 .box::after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ddd;
    content: " ";
    right: 0;
}

.pattern-module-27 .col-12:last-child .box::after {
    display: none;
}

.pattern-module-27 .box .image img {
    width: 100%;
}

.pattern-module-27 .box .title {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
    display: block;
}

.pattern-module-27 .box .btn {
    border-radius: 30px;
}

/* Pattern Module 28 */
.pattern-module-28 {
    border: 2px solid #bf9e50;
    padding: 15px;
    background: #fff;
}

.pattern-module-28 .select-box,
.pattern-module-28 .input-box {
    margin-bottom: 20px
}

.pattern-module-28 .select-box select,
.pattern-module-28 .input-box input {
    border: 1px solid #a8a8a8;
    color: #777;
    font-size: 15px;
    padding: 10px;
    font-weight: 500;
}

.pattern-module-28 .select-box select.form-control:not([size]):not([multiple]) {
    height: calc(2.65rem + 2px);
    padding: 0;
}

/* Pattern Module 29 */
.pattern-module-29 .owl-group{
    margin-bottom: 15px;
    position: relative;
}

.pattern-module-29 .owl-group .brand-image {
    display: block;
    margin-top: -20px;
    text-align: center;
}

.pattern-module-29 .owl-group .brand-image img {
    max-width: 100%
}

.pattern-module-29 .owl-group .owl-btns {
    color: #777;
    font-size: 30px;
    display: block;
    width: 25px;
    height: 35px;
    position: absolute;
    top: 25%;
    z-index: 2
}

.pattern-module-29 .owl-group .owl-btns.owl-b-prev {
    left: 0;
}

.pattern-module-29 .owl-group .owl-btns.owl-b-next {
    right: 0;
}

/* Cart */
.cart table tbody tr td .old-price {
    text-decoration: line-through;
    display: block
}

/* Instagram Module */
.card-instagram-feed {
    margin-top: 15px
}

/* Cookie Agreement Module */
.cookie-agreement-module {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 15px 0;
    font-size: 13px;
    font-weight: 500;
}

.cookie-agreement-module .cam-btn {
    border: 0 !important;
    border-radius: 3px !important;
    display: inline-block !important;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 600
}

/* Trendyol */
.bg-trendyol {
    background: none;
}

.bg-trendyol .text-white {
    color: #fc672c !important;
}

/* Ciceksepeti */
.bg-ciceksepeti {
    background: none;
}

.bg-ciceksepeti .text-white {
    color: #25539b !important;
}

/* Header Cart */
.header-cart {
 
}

.header-cart .summary {
    padding: 10px 0;
}

.header-cart .summary .summary-tot {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
}

.header-cart .summary .total {
    text-align: center;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    color: #ff0000;
}

.header-cart .summary .shipping {
    text-align: center;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.header-cart .summary .btn {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    margin-top: 10px
}

.header-cart .wrap-items {
    overflow: hidden;
}

.header-cart .wrap-items .item {
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: 0;
    padding: 0 5px;
}

.header-cart .wrap-items .item:first-child {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.header-cart .wrap-items .item .image {
    margin-right: 10px;
    width: 60px;
    height: 60px;
}

.header-cart .wrap-items .item .info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex: 1;
    border-left: 1px solid rgba(0, 0, 0, .1);
    border-right: 1px solid rgba(0, 0, 0, .1);
    height: 100%;
    padding: 5px;
    min-height: 60px;
}

.header-cart .wrap-items .item .name {
    color: #333;
    font-weight: 500;
    font-size: 13px;
}

.header-cart .wrap-items .item .attributes {
    color: #666;
    font-weight: 700;
    font-size: 12px;
}

.header-cart .wrap-items .item .price {
    color: #ff0000;
    font-weight: 700;
    font-size: 14px;
}

.header-cart .wrap-items .item .btn-remove {
    color: #999;
    font-size: 18px;
    width: 40px;
}

/* Modal xlg */
.modal-xlg {
    width: 1100px;
    max-width: calc(100vw - 1rem);
}

/* Native Modal */
.native-modal {
    z-index: 1049 !important;
}

.native-modal .modal-content {
    border-radius: 0 !important;
}

.native-modal .native-modal-close {
    border: 3px solid #ffffff;
    text-align: center;
    position: absolute;
    top: -13px;
    right: -13px;
    width: 38px;
    height: 38px;
    background: #333333;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    color: #fff;
}

/* Product Customize */
body.product-customize {
    background: #fff;
}
.product-custimze-breadcrumb {
    background: #182430;
    padding: 12px 0
}

.product-custimze-breadcrumb .breadcrumb { 
    color: #fff;
    font-size: 14px
}

.product-custimze-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #fff;
}

.product-custimze-breadcrumb .breadcrumb a {
    color: #fff;
}

.product-custimze-breadcrumb .breadcrumb a:hover {
    color: #fff;
}

.product-customize-wrapper h2 {
    margin-top: 30px;
} 

.product-customize-wrapper h2 i {
    font-size: 25px;
    color: rgba(0,0,0,.5)!important;
}

.product-customize-wrapper .pc-bar {
    border: 1px solid #e7e7e7;
    padding: 10px
}

.product-customize-wrapper .pc-bar .photo-count {
    font-size: 18px;
    margin-top: 5px;
}

.product-customize-wrapper .pc-frame-options {
    margin: 20px 0
}

.product-customize-wrapper .pc-frame-options .col-6 {
    padding: 5px;
}

.product-customize-wrapper .pc-frame-options .option {
    border: 1px solid #dddddd;
    transition: all .2s;
    opacity: 0.6;
    padding: 10px 10px 0 10px;
    cursor: pointer;
    margin: 0;
}

.product-customize-wrapper .pc-frame-options .option:hover {
    opacity: 1;
}

.product-customize-wrapper .pc-frame-options .option.checked {
    box-shadow: 0 0 30px rgba(143, 143, 143, 0.6);
    opacity: 1;
}

.product-customize-wrapper .col-photo-select {
    background: #f1f1f1;
    border: 1px solid #e7e7e7;
    border-top: 0;
}

.product-customize-wrapper .col-photo-select .dropzone .dz-preview {
    display: none !important;
} 

.product-customize-wrapper .col-photo-select .dropzone .dz-message {
    border: 3px dashed #fff;
    background: #1da53d;
    border-radius: 20px;
    padding: 20px 0;
    color: #fff;
    font-size: 30px;
    min-height: 0;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.product-customize-wrapper .spinner {
    text-align: center;
    padding: 10px 0;
    display: none;
}

.product-customize-wrapper .spinner .spin {
    border: 5px solid #f3f3f3; 
    border-top: 5px solid #000; 
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: PCspinnerSpin 1s linear infinite;
    margin: 0 auto;
}

@keyframes PCspinnerSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-customize-wrapper .pc-photo-list-1 {
    padding: 20px;
}

.product-customize-wrapper .pc-photo-list-1 .item {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 3%;
    position: relative;
}

.product-customize-wrapper .pc-photo-list-1 .item .relative {
    position: relative;
}

.product-customize-wrapper .pc-photo-list-1 .item .filterMask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.product-customize-wrapper .pc-photo-list-1 .quantity {
    position: relative;
}

.product-customize-wrapper .pc-photo-list-1 .quantity-button {
    cursor: pointer;
    width: 20px;
    text-align: center;
    color: #4d4d4d;
    background: #f3f3f3;
    position: absolute;
    line-height: 42px;
    width: 42px;
    font-weight: 700;
    font-size: 20px;
    top: 0;
    user-select: none;
    cursor: pointer
}

.product-customize-wrapper .pc-photo-list-1 .quantity-button.quantity-down {
    left: 0;
}

.product-customize-wrapper .pc-photo-list-1 .quantity-button.quantity-up {
    right: 0;
}

.product-customize-wrapper .pc-photo-list-1 .quantity input {
    display: block;
    text-align: center;
    border: 0!important;
    font-weight: 600;
    margin-left: 33px !important;
    background: #fff !important;
}

.product-customize-wrapper .pc-photo-list-1 .editButtons {
    top: 0;
    left: 0;
    opacity: .7;
    transition: all .2s;
    position: absolute;
}

.product-customize-wrapper .pc-photo-list-1 .editButtons a {
    font-size: 16px;
}

.product-customize-wrapper .pc-photo-list-1 .editButtons .deleteItem {
    color: #dc240a;
    width: 37px;
}

.product-customize-wrapper .pc-photo-list-1 .editButtons .cropButton {
    color: #333;
    width: 37px;
}

.product-customize-wrapper .pc-photo-list-1 .editButtons .filterButton {
    color: #00b337;
    width: 37px;
}

.product-customize-wrapper .pc-photo-list-1 input[type=text].input-2 {
    border: 0 !important;
    line-height: 1 !important;
    padding: 0 !important;
    background: transparent !important;
    height: 20px !important;
    font-size: 16px !important;
    margin: 0 !important;
    color: rgb(0, 0, 0);
}

.product-customize-wrapper .pc-photo-list-1 input[type=text].input-2:focus {
    outline: none !important;
}

.product-customize-wrapper .img-container {
    max-height: calc(100vh - 230px);
    position: relative;
}

.product-customize-wrapper .copperLoader {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background-color: rgba(255,255,255,.7);
    font-size: 22px;
    position: absolute;
    display: none;
}

.product-customize-wrapper .copperLoader .spin {
    border: 5px solid #f3f3f3; 
    border-top: 5px solid #000; 
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: PCLspinnerSpin 1s linear infinite;
    margin: 0 auto;
}

.product-customize-wrapper .pc-photo-list-2 {
    border: 1px solid #333;
    margin: 10px -15px;
}

.product-customize-wrapper .pc-photo-list-2 .row {
    margin: 0
}

.product-customize-wrapper .pc-photo-list-2 .item {
    background-color: #fff;
    position: relative;
    padding: 0;
    margin: 5px;
}

.product-customize-wrapper .pc-photo-list-2 .item .relative {
    position: relative;
}

.product-customize-wrapper .pc-photo-list-2 .item .relative img {
    width: 100%;
    height: 100%;
}

.product-customize-wrapper .pc-photo-list-2 .item .filterMask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.product-customize-wrapper .pc-photo-list-2 .editButtons {
    top: 0;
    left: 0;
    opacity: .7;
    transition: all .2s;
    position: absolute;
}

.product-customize-wrapper .pc-photo-list-2 .editButtons a {
    font-size: 16px;
}

.product-customize-wrapper .pc-photo-list-2 .editButtons .deleteItem {
    color: #dc240a;
    width: 37px;
}

.product-customize-wrapper .pc-alert {
    background: #eeeeee;
    margin-top: 10px;
    padding: 10px 0;
    font-size: 15px;
}

@keyframes PCLspinnerSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-customize-wrapper .img-container .options {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-customize-wrapper .img-container .options .option {
    border: 2px solid #838383;
    border-radius: 10px;
    cursor: pointer;
    flex: 1;
    margin: 10px;
}

.product-customize-wrapper .img-container .options .option img {
    border-radius: 10px;
    max-height: 250px;
    width: 100%;
}

.product-customize-wrapper .img-container .options .option:hover {
    border-color: #00b337
}

.product-customize-wrapper .selectFont,
.product-customize-wrapper .selectColor {
    background: rgba(0,179,55,.15);
}
  
@media (max-width: 991px) {
    .modal-xlg {
        width: calc(100vw - 1rem);
        max-width: calc(100vw - 1rem);
        margin: 0 auto;
    }
    .native-modal .native-modal-close {
        top: 0;
        right: 0;
    }
    .product-custimze-breadcrumb .breadcrumb {
        color: #fff;
        font-size: 12px
    }
}

@media (max-width: 770px) {
    .cookie-agreement-module {
        padding: 10px 0;
        font-size: 12px;
        font-weight: 400;
    }

    .cookie-agreement-module .cam-btn {
        padding: 5px 8px;
        font-size: 12px;
        margin-top: 5px;
    }
}

@media (max-width: 575px) {
    .modal-xlg {
        width: calc(100vw - 1rem);
        max-width: calc(100vw - 1rem);
    }

}