html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Default */
a {
    text-decoration: none;
}

.default_btn1 {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    color: #fff;
    background: #67bccd;
    border: 1px solid #67bccd;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    transition: .3s;
}

    .default_btn1:hover {
        background: transparent;
        color: #67bccd;
    }

.default_btn2 {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    color: #67bccd;
    background: transparent;
    border: 1px solid #67bccd;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    transition: .3s;
}

    .default_btn2:hover {
        background: #67bccd;
        color: #fff;
    }

.breadcum {
    padding: 20px 0px;
}

input:focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
}


/* NavBar */
.navbar {
    border-bottom: 1px solid #addde7 !important;
}

nav a.navbar-brand {
    color: #67bccd !important;
}

    nav a.navbar-brand:first-letter {
        color: brown;
        font-size: 30px;
        line-height: 0px;
        color: #0dcaf0;
    }

nav .navbar-nav li a {
    font-weight: 500;
}

nav .navbar-nav li:hover a {
    color: #67bccd !important;
}

/* Search */

.main-search .search-with-box {
    width: 100%;
    position: relative;
}

.main-search .search-input {
    height: 40px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: #fff;
    overflow: hidden;
    border: 1px solid #67bccd;
}

.main-search .search-btn {
    background-color: #67bccd;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
    z-index: 2;
}

.main-search .sresult {
    width: 100%;
    left: 0;
    min-height: calc(100vh - 120px);
    height: 100%;
    display: none;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.25);
    width: 100%;
    border-radius: 2px;
    position: absolute;
    padding: 0;
    text-align: left;
    font-size: 14px;
    overflow: auto;
    border-radius: 10px;
}

    .main-search .sresult ul.sresult-products {
        overflow: auto;
        /*height: 595px;*/
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none outside none;
    }

    .main-search .sresult li {
        border-top: 1px solid transparent;
        border-bottom: 1px solid transparent;
        line-height: 16px;
        padding: 4px 10px;
        display: block;
        margin: 0;
        color: #333;
        overflow: hidden;
        cursor: pointer;
        text-decoration: none;
    }

        .main-search .sresult li:hover {
            background: #f7f7f7;
        }

        .main-search .sresult li a.sresult-item {
            display: block;
            padding: 2px;
            min-height: 60px;
            outline: 0;
            opacity: 1;
            text-decoration: none;
            display: flex;
            flex-direction: row;
            gap: 16px;
        }

    .main-search .sresult .sresult-thumbnail {
        display: block;
        margin: 5px 0px;
        text-align: center;
        width: 70px;
    }

    .main-search .sresult .sresult-thumbnail img {
        display: inline;
        max-width: 70px;
        max-height: 70px;
    }

    .main-search .sresult .sresult-title {
        display: block;
        color: #67bccd;
        font-weight: 700;
        font-size: 100%;
        margin-top: 3px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .main-search .sresult .sresult-description {
        display: block;
        margin-top: 5px;
        color: #747474;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .main-search .sresult .sresult-price-list {
        margin-top: 6px;
        color: #014e70;
        font-weight: 700;
        font-size: 16px
    }

        .main-search .sresult .sresult-price-list .sresult-price-without-discount {
            color: #6c757d;
            text-decoration: line-through;
            text-decoration-color: red;
            margin-left: 8px;
            font-size: 12px;
            font-family: italic;
            font-style: italic;
        }


/* Shop By Category */

.shop_category .single_shopcat {
    background: url(/images/category/category-1.jpg);
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.shop_category .shopcat_cont {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.shopcat_cont h4 {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
}

.shopcat_cont .icon {
    color: #fff;
    font-size: 20px;
    line-height: 1;
    opacity: 0;
    transition: 0.3s;
    margin-top: 8px;
}

.single_shopcat:hover .shopcat_cont .icon {
    opacity: 1;
    margin-left: 8px;
}

.single_shopcat::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #00000060;
}

/* Top New Arrival */

.new_arrival .new_arriv_img {
    background: #f3f3f3;
}

.new_arrival .single_arrival img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.new_arrival .prodcut_hovcont {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: 0.3s ease;
}

.new_arrival .single_arrival:hover .prodcut_hovcont {
    opacity: 1;
}

.new_arrival .single_arrival .search_icon,
.new_arrival .single_arrival .love_icon {
    font: 20px;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background: #67bccd;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s
}

    .new_arrival .single_arrival .search_icon:hover,
    .new_arrival .single_arrival .love_icon:hover {
        background: #1f2937;
    }

.new_arrival .single_arrival .product_title {
    transition: .3s ease;
    font-size: 18px;
}

    .new_arrival .single_arrival .product_title:hover {
        color: #67bccd !important;
    }

/* product view */

.prod_view .content-area .prod_title {
    text-transform: uppercase;
    margin-bottom: 24px;
    font-size: 22px;
    margin-top: 0;
    font-weight: 700;
    line-height: 14px;
}

.prod_view .prod_size .size-selector label {
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

/* Related Product */

.related_product .new_arriv_img {
    background: #f3f3f3;
}

.related_product .single_arrival img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.related_product .prodcut_hovcont {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: 0.3s ease;
}

.related_product .single_arrival:hover .prodcut_hovcont {
    opacity: 1;
}

.related_product .single_arrival .search_icon,
.related_product .single_arrival .love_icon {
    font: 20px;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background: #67bccd;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s
}

    .related_product .single_arrival .search_icon:hover,
    .related_product .single_arrival .love_icon:hover {
        background: #1f2937;
    }

.related_product .single_arrival .product_title {
    transition: .3s ease;
}

    .related_product .single_arrival .product_title:hover {
        color: #67bccd !important;
    }

/* Shop Grid */

.shop .shop_sidebar {
    background: #fff;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 0 4px rgba(0,0,0,.2);
    padding: 10px 20px
}

.shop .price_filter input {
    border: 1px solid #d1d5db;
    padding: 4px 12px;
    font-size: 14px;
    color: #4b5563;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border-radius: 4px;
    width: 100%;
}

.shop .size_filter label {
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
}

.shop .color_filter label {
    font-size: 13px;
    cursor: pointer;
    text-transform: capitalize;
}

.shop .size_filter .form-check-inline,
.shop .color_filter .form-check-inline {
    margin: 0;
    display: flex;
    align-items: center;
    padding-left: 0;
}

.shop .size_filter .form-check-input,
.shop .color_filter .form-check-input {
    width: 12px;
    height: 12px;
    margin: 0;
    margin-right: 6px
}

.shop .sorting-filter select {
    width: 11rem;
    font-size: 16px;
    color: #4b5563;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    padding: 10px 20px;

}

/* Shop Cart */

.shop-cart .single_shop_cart {
    border: 1px solid #e9e4e4;
    border-radius: 5px;
    padding: 20px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.shop-cart .cart_img {
    max-width: 150px;
    background: transparent;
    margin-right: 24px;
}

.shop-cart .cart_img img {
    width: 100%;
    max-height: 105px;
    object-fit: contain;
}

.shop-cart .cart_content {
    width: 320px;
}

    .shop-cart .cart_content a {
        color: #1f2937;
    }

    .shop-cart .cart_content p.price {
        font-size: 15px;
        font-weight: 700;
        color: #67bccd;
        margin-bottom: 0px;
        line-height: 24px;
    }

    .shop-cart .cart_content p.size {
        margin-bottom: 0;
        margin-top: 2px;
        font-size: 14px;
    }

.shop-cart .cart_qnty {
    display: flex;
    align-items: center;
}

    .shop-cart .cart_qnty .cart_qnty_btn {
        font-size: 17px;
        width: 32px;
        height: 32px;
        text-align: center;
        line-height: 32px;
        cursor: pointer;
        border: 1px solid #e9e4e4;
        background: transparent;
    }

    .shop-cart .cart_qnty .cart_count {
        font-size: 14px;
        width: 42px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        border: 1px solid #e9e4e4;
        border-left: 0;
        border-right: 0;
    }

.shop-cart .cart_price {
    min-width: 90px;
    text-align: right;
}

    .shop-cart .cart_price p {
        font-size: 18px;
        margin-bottom: 0;
        font-weight: 700;
        color: #67bccd;
    }

.shop-cart .cart_remove {
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
    padding: 0px 6px;
    background: transparent;
    color: #ff0023;
    border: 1px solid #ff0023;
    border-radius: 3px;
    transition: .3s;
}

    .shop-cart .cart_remove:hover {
        background: #ff0023;
        color: #fff;
    }

.shop-cart .cart_summary {
    border: 1px solid #e9e4e4;
    border-radius: 5px;
    padding: 20px;
    padding-bottom: 16px;
}

    .shop-cart .cart_summary h4 {
        font-size: 18px;
        text-transform: uppercase;
        margin-bottom: 14px;
        font-weight: bold;
    }

.shop-cart .cartsum_text {
    display: flex;
    justify-content: space-between;
}

    .shop-cart .cartsum_text p {
        margin-bottom: 5px;
    }

.shop-cart .cart_sum_total {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #e9e4e4;
    margin-bottom: 5px;
    margin-top: 4px;
}

    .shop-cart .cart_sum_total p {
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 700;
    }

.shop-cart .cart_sum_pros_btn {
    margin-bottom: 10px;
}

/* Checkout */

.checkout .checkout_cart_title {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 24px;
    padding: 10px 0;
    display: flex;
    padding-left: 16px;
    background: #d1eff5;
    border-radius: 4px;
}

.checkout .checkout_form,
.checkout .checkout_order {
    padding: 20px 24px 28px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    box-shadow: 0 0 16px rgba(0, 0, 0, .09);
}

.checkout .single_billing_inp label {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.checkout .single_billing_inp input,
.checkout .single_billing_inp textarea {
    font-size: 14px;
    width: 100%;
    display: block;
    padding: 8px 16px;
    border: 1px solid #e9e4e4;
    border-radius: 3px;
    margin-bottom: 5px;
    margin: 0;
}

.checkout .single_billing_inp label span {
    color: #ff0023;
}

.checkout .checkout_order h4 {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.5;
    border-bottom: 1px solid #e9e4e4;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.checkout .single_check_order {
    display: flex;
    margin-bottom: 15px;
}

.checkout .checkorder_cont h5 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

.checkout .checkorder_cont p {
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
    color: #9ca3af;
    display: flex;
    gap: 20px;
}

.checkout p.checkorder_qnty {
    margin-left: auto;
    margin-right: 30px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.checkout p.checkorder_price {
    margin-left: auto;
    min-width: 70px;
    text-align: right;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.5;
}

.checkout .single_check_order.subs,
.checkout  .single_check_order.total {
    border-bottom: 1px solid #e9e4e4;

}

    .checkout .single_check_order.total h5,
    .checkout .single_check_order.subs h5 {
        font-weight: 700;
        text-transform: uppercase;
        font-size: 18px;
    }

.checkout .checkorder_cont.subtotal-h h5 {
    font-size: 15px;
}

.checkout .checkorder_agree {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

    .checkout .checkorder_agree input {
        cursor: pointer;
    }

    .checkout .checkorder_agree label {
        margin-left: 10px;
        cursor: pointer;
        font-size: 14px;
    }

        .checkorder_agree label a {
            color: #67bccd;
        }

/* Wish List */

.wishlist .single_wishlist {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #e5e7eb;
    padding: 20px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

    .wishlist .single_wishlist .cart_img {
        max-width: 150px;
        background: transparent;
        margin-right: 30px;
    }

        .wishlist .single_wishlist .cart_img img {
            width: 80px;
            height: 80px;
        }

    .wishlist .single_wishlist .cart_cont {
        width: 400px;
    }

        .wishlist .single_wishlist .cart_cont h5 {
            margin-bottom: 4px;
            font-size: 17px;
            text-transform: uppercase;
            line-height: 1.4;
            font-weight: 500;
            transition: 0.3s;
            color: #18181b
        }

            .wishlist .single_wishlist .cart_cont h5:hover {
                color: #67bccd;
            }

        .wishlist .single_wishlist .cart_cont .instock {
            margin-bottom: 0;
            font-size: 14px;
            color: #464545;
        }

        .wishlist .single_wishlist .cart_cont .outstock {
            margin-bottom: 0;
            font-size: 14px;
            color: #464545;
        }

            .wishlist .single_wishlist .cart_cont .instock span {
                color: #008000;
                font-weight: bold;
            }

        .wishlist .single_wishlist .cart_cont .outstock span {
            color: #ff0000;
            font-weight: bold;
        }

    .wishlist .single_wishlist .cart_price {
        min-width: 80px;
        text-align: right;
        margin-left: auto;
    }

        .wishlist .single_wishlist .cart_price p {
            font-size: 18px;
            margin: 0;
            font-weight: 700;
            color: #67bccd;
        }

    .wishlist .single_wishlist .wish_cart_btn {
        margin-left: auto;
        margin-top: 0;
    }

        .wishlist .single_wishlist .wish_cart_btn button {
            padding: 6px 12px;
            font-size: 13px;
            border-radius: 5px;
            margin-right: 10px;
            min-width: 135px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .wishlist .single_wishlist .wish_cart_btn button.disabled {
                cursor: not-allowed;
                background: #fca5a5;
                border: 1px solid #fca5a5;
            }

                .wishlist .single_wishlist .wish_cart_btn button.disabled:hover {
                    background: #fca5a5;
                    color: #fff;
                }

            .wishlist .single_wishlist .wish_cart_btn button .icon {
                margin-right: 5px;
            }
                .wishlist .single_wishlist .wish_cart_btn button .icon .cart_icon {
                    font-size: 18px;
                }

    .wishlist .single_wishlist .cart_remove {
        font-size: 18px;
        cursor: pointer;
        transition: 0.2s;
        align-self: center !important;
        margin-left: auto;

        padding: 0px 6px;
        background: transparent;
        color: #ff0023;
        border: 1px solid #ff0023;
        border-radius: 3px;
    }

    .wishlist .single_wishlist .cart_remove:hover {
        background: #ff0023;
        color: #fff;
    }