/*---------------------------------
* General
-----------------------------------*/

body {
    font-family: "Roboto", sans-serif;
    color: #444444;
    font-size: 16px;
    padding-top: 114px;
}

.bg-light {
    background-color: #f3f3f3 !important;
}

h1,
h2,
h3,
h4,
.heading-top {
    font-family: 'Muli', sans-serif;
    font-weight: bold;
}



.heading-top {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}


.heading-lg {
    font-size: 35px;
}

h1 {
    font-size: 30px;
}

h2 {
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 16px;
}

.section p {
    margin-bottom: 30px;
}

a {
    color: #444444;
    transition: 0.2s;
}

a:hover {
    color: #007296;
    text-decoration: unset;
}

a:focus {
    outline: unset;
}

img {
    max-width: 100%;
}

main {
    min-height: 80vh;
    height: auto;
}

.section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.list-group {
    border-radius: 0px;
}

/*---------------------------
    * Buttons
    -----------------------------*/

.btn-secondary {
    border-radius: 0px;
    background-color: transparent;
    color: #2F2F2F;
    border-color: #2F2F2F;
}

.btn-secondary:hover {
    background-color: #2F2F2F;
    color: white;
}

.btn-primary {
    border-radius: 0px;
    background-color: #007296;
    border-color: #007296;
    font-family: "Muli", sans-serif;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 40px;

}

.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-color: #007296;
    border-color: #007296;
    box-shadow: unset;
    border-color: #007296;
    outline: unset;
}

.btn-back {
    background-color: #C4C4C4;
    color: black;
    border: unset;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back:hover,
.btn-back.focus,
.btn-back:focus,
.btn-back:not(:disabled):not(.disabled).active,
.btn-back:not(:disabled):not(.disabled):active,
.show>.btn-back.dropdown-toggle {
    background-color: #aaaaaa;
    color: black;
}



/* Scroll To Top */
.appear {
    opacity: 1 !important
}

#scrollTop {
    width: 54px;
    height: 44px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    color: rgba(255, 255, 255, .8);
    background-color: rgba(0, 114, 150, 0.7);
    opacity: 0;
    -webkit-transform: translatey(20px);
    transform: translatey(20px);
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    z-index: 90;
    -webkit-transition: .2s;
    transition: .2s;
    border-radius: 0px;
}

#scrollTop.show {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

#scrollTop i {
    font-size: 20px
}

#scrollTop:active,
#scrollTop:focus,
#scrollTop:hover {
    background-color: rgba(0, 114, 150, 1);
    text-decoration: none;
    color: #fff;
}

#scrollTop,
.mobile-square {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center
}

/* Sweet alert */

.swal-modal{
    border-radius:0px;
}

.swal-title {
    font-family: 'Muli', sans-serif;
    font-weight: bold;
	font-size: 35px;
	color: #212121;
}
button.swal-button{
    border-radius:0px
}
button.swal-button.swal-button--confirm {
	background-color: #007296;
    padding: 10px 40px;
    transition:0.2s;
}

button.swal-button.swal-button--confirm:hover {
	background-color: #007296;
    border-color: transparent;
    box-shadow: 0 0 0 0.2rem rgb(140, 191, 208);
}

button.swal-button.swal-button--confirm:active,
.swal-button--cancel:focus,
button.swal-button.swal-button--confirm:focus {
	border-color: transparent;
	box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(153, 38, 38, .09);

}

button.swal-button.swal-button--confirm:active {
    background-color: #007296;
    box-shadow: 0 0 0 0.2rem rgb(78, 116, 129);

}

.swal-footer{
    display:flex;
    justify-content: center;
}

/*---------------------------------
* Header & Nav
-----------------------------------*/


/* Burger menu */

.main-nav.navbar-light .navbar-toggler {
    border-color: transparent;
}

.mobile-square {
    width: 68px;
    height: 50px;
}

.mobile-square.burger {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0px;
}

.mobile-square.burger .mobile-burger {
    width: 30px
}

.mobile-square.burger span {
    width: 100%;
    display: block;
    height: 2px;
    border-radius: 0px;
    background: #007296;
    position: relative
}

.mobile-square.burger span:after,
.mobile-square.burger span:before {
    content: '';
    display: block;
    background-color: #007296;
    width: 100%;
    height: 2px;
    border-radius: 0px;
    position: absolute;
    -webkit-transition: .1s;
    transition: .1s;
}

.mobile-square.burger span:after {
    bottom: -9px
}

.mobile-square.burger span:before {
    top: -9px
}

.activated .mobile-burger .burger-bars {
    height: 0
}

.activated .mobile-burger .burger-bars:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: calc(25% - 1.5px)
}

.activated .mobile-burger .burger-bars:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: calc(25% - 1.5px)
}


/* Megamenu */
.navbar-collapse {
    position: relative;
}

.navbar-nav .browse-categories .nav-link:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}

.mega-container {
    display: none;
    position: absolute;
    width: 100%;
    max-width: 900px;
    right: 0;
    top: 0;
    background: white;
    padding: 20px 0px;
    border: 1px solid #cbcbcb;
}

.megamenu-col {
    list-style: none;
    padding: 0px;
    position: relative;
}

.megamenu-col:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #C4C4C4;
    right: 0px;
    top: 0;
}

.megamenu-col:last-child:after {
    display: none;
}

.megamenu-item {
    padding: 5px 30px;
}

.megamenu-item a {
    display: block;
}

.megamenu-item.active {
    font-weight: bold;
}

.megamenu-item:hover,
.sub-menu .nav-link:hover,
.megamenu-item.active {
    background-color: rgba(0, 114, 150, 0.1);
}

/* Mobile Menu */

.main-nav .collapsing {
    transition: 0s !important;
}

.main-nav .navbar-collapse {
    height: calc(100vh - 114px);
    overflow-y: scroll;
    overflow-x: hidden;
}

li.nav-item.has-children .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 35px;
    position: relative;
}

.menu-dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
}


.main-nav .navbar-collapse .navbar-nav>.nav-item {
    border: 1px solid #cbcbcb;
}

.main-nav .navbar-collapse .navbar-nav>.nav-item .nav-link {
    padding: 10px 20px;
}

.browse-categories {
    padding-left: 20px;
}

.main-nav .navbar-collapse .navbar-nav>.nav-item:nth-child(odd) {
    border-bottom: 0px;
    border-top: 0px;
}


.nav-item.has-children .sub-menu {
    display: none;
    background: white;
    list-style: none;
    padding: 15px 10px;
    font-size: 16px;
    border-top: 1px solid #cbcbcb;
}

.nav-item.has-children.active .sub-menu {
    display: block;
}

/* Topbar */

.topbar {
    font-size: 12px;
}

.search-btn,
.cart-btn {
    font-size: 16px;
    color: #007296;
    position: relative;
}

/* Styling the cart */



.prices-in img {
    opacity: 0.3;
    cursor: pointer;
}

.prices-in a {
    text-decoration: none;
}

.prices-in img.selected,
.prices-in a:hover img {
    opacity: 1;
}

.cart-item-count {
    font-family: 'Muli', sans-serif;
    font-weight: bold;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2F2F2F;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    position: absolute;
    z-index: 1;
    left: -10px;
    top: -10px;
}

.cart-expanded {
    display: none;
}

/* Top Menu links*/
.top-menu li {
    margin-right: 20px;
}

.top-menu li a {
    font-size: 12px;
    padding-left: 0px;
    padding-right: 0px;
    color: #828282;
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link {
    color: #2c373a;
    font-weight: bold;
    margin-right: 15px;
    font-family: "Muli", sans-serif;
}

.navbar-light .navbar-nav .sub-menu .nav-link {
    font-weight: normal;
}

.navbar-nav .browse-categories .nav-link {
    color: #007296;
    position: relative;
    padding-left: 20px;
    margin-right: 0px;
}

.current-menu-item > .nav-link {
    color: #007296 !important;
}

.browse-categories .nav-link:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 13px;
    background-image: url("../img/grid-icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Banner */
.banner {
    min-height: 180px;
    display: flex;
    align-items: center;
    background-size: cover;
    position: relative;
    margin-bottom: 30px;
}

.banner:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-text {
    position: relative;
}

.navbar-brand {
    max-width: 170px;
}


/*---------------------------
  * Slider
  -----------------------------*/

/* Hide the slides before slick is initialized */

.slider-container {
    visibility: hidden;
}

.slick-initialized {
    visibility: visible;
}


.slick-initialized .slide-container.slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.slider-banner .slick-initialized .slide-container.slick-slide:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.slider-banner .slide-container .container {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    padding: 0px 15px;
}

.slider-banner .slick-dots {
    bottom: 35px;
}

.slick-dots li {
    margin: 0px;
}

.slick-dots li button::before {
    font-size: 10px;
}

.slider-banner .slick-dots li button::before {
    color: white;
}

/* Arrows */

.slick-arrow {
    width: 35px;
    height: 35px;
}

.slick-next {
    right: 3px;
}

.slick-prev {
    left: 3px;
    z-index: 2;
}

.slick-prev:before,
.slick-next:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.slick-prev:before {
    background-image: url('../img/arrow-left.svg');
}

.slick-next:before {
    background-image: url('../img/arrow-right.svg');
}

/* Banner Features */

.banner-features {
    list-style: none;
    padding: 20px;
    background-color: #2F2F2F;
    margin-bottom: initial;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: -61px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.banner-feature {
    margin: 10px 32px;
    position: relative;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    width: 100%;
}

.banner-feature img {
    margin-right: 10px;
}


.banner-feature:last-child:after {
    display: none;
}


/*---------------------------
* Product Cards
-----------------------------*/


/*---------------------------
* Sidebar
-----------------------------*/
.shop-sidebar.list-group {
    border: 1px solid #cbcbcb;
    padding: 20px;
    border-radius: 0px;
}

.shop-sidebar .list-group-item {
    padding: 5px 0px;
    background-color: #fff;
    border: unset;
    list-style: unset;
    color: #2c373a;
    position: relative;
    margin-left: 30px;
}
.current-cat {
    font-weight:bold;
}

.shop-sidebar .list-group-item:before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: #007296;
    left: -20px;
    top: 15px;
}

a.viewMoreCategories {
    display: flex;
    width: 100%;
    height: 40px;
    background: #fbfbfb;
    border: 1px solid #cbcbcb;
    border-top: unset;
    color: #007296;
    align-items: center;
    justify-content: center;
}

.card-col {
    padding-right: 5px;
    padding-left: 5px;
    font-family: "Muli", sans-serif;
    font-weight: bold;
}

.product-card {
    border-radius: 0px;
    border: 1px solid #cbcbcb;
}

.product-card .card-img-top {
    border-radius: 0px;
    border-bottom: 1px solid #cbcbcb;
    position: relative;
    padding: 10px;
}

.tag-group {
    display: flex;
}

.product-card .tag-group{
    position: absolute;
    top: 5px;
}



.sale-tag {
    display: block;
    background-color: #007296;
    text-transform: uppercase;
    font-size: 12px;
    z-index: 10;
    color: white;
    width: 100%;
    max-width: 90px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 5px;
    padding: 2px 0;
}

.product-card-body {
    padding: 10px 15px;
}

.price {
    font-size: 20px;
}

.crossedPrice {
    color: #979797;
    font-size: 14px;
    text-decoration-line: line-through;
    margin-right: 5px;
}

/* Add to card style */
.addToCard-container {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.quantity-input {
    width: 50px;
    font-family: "Muli", sans-serif;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
}

.quantity-input:focus {
    outline: unset;
}

.addToCard-container .btn-primary {
    padding: 5px 10px;
}

.btn-primary:hover {
    box-shadow: 0 0 0 0.2rem rgb(140, 191, 208)
}

/* search */
.search-container {
    display: none;
}

.search-container.search-show {
    display: block;
    position: absolute;
    margin: 0 auto;
    right: 0;
    left: 0;
    z-index: 100;
    top: 35px;
    background: #fff;
    border: 1px solid #cbcbcb;
    padding: 30px 20px;
    z-index: 9999;
}

#searchOverlay {
    width: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    left: 0;
    top: 50px;
    background: rgba(0, 0, 0, .6);
    z-index: 2000;
}

/*---------------------------------
* Featured product section
-----------------------------------*/
.featured-section {
    background-color: rgba(0, 114, 150, 0.1);
}

/*---------------------------------
* About section
-----------------------------------*/
.about-section {
    background-color: rgba(0, 114, 150, 0.1);
    position: relative;
}

/*---------------------------------
* Discover product section
-----------------------------------*/
span.discoverProducts-border {
    width: 35%;
    height: 1px;
    background-color: #C4C4C4;
}

/*---------------------------------
* Best deal section
-----------------------------------*/
.bestDeal-section {
    font-family: "Muli", sans-serif;
    font-weight: bold;
}

.bestDeal-section .slider-container {
    margin-top: 30px;
}

.bestDeal-section .product-card {
    margin: 0 10px;
}

.bestDeal-section .slick-arrow {
    width: 15px;
    height: 15px;
}



.bestDeal-section .slick-prev:before {
    background-image: url(../img/arrow-product-slider-left.svg);
}

.bestDeal-section .slick-next:before {
    background-image: url(../img/arrow-product-slider-right.svg);
}

.bestDeal-section .slick-prev {
    top: -20px;
    left: 0;
}

.bestDeal-section .slick-next {
    top: -20px;
    left: 30px;
}

/* slider */
.slick-slide:focus,
.slick-slide img:focus {
    outline: unset;
}


/*---------------------------------
* Footer
-----------------------------------*/

.footer-top {
    background-color: #2C373A;
    padding: 10px 0;
    flex-wrap: wrap;
}

.footer-bottom {
    font-size: 12px;
    background-color: black;
    padding: 10px 0;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom .text-blue {
    color: #007296;
}

/*---------------------------------
* Single Product page
-----------------------------------*/

.single-product-info .addToCard-container {
    justify-content: flex-start;
}

.single-product-info .quantity-input {
    margin-right: 10px;
}


.singleProduct-section .slick-prev:before {
    background-image: url(../img/arrow-product-slider-left.svg);
}

.singleProduct-section .slick-next:before {
    background-image: url(../img/arrow-product-slider-right.svg);
}

.singleProduct-section .slide-container img {
    cursor: pointer;
}

.singleProduct-section .slider-container.single-product-slider-for {
    cursor: pointer;
    border: 1px solid #cbcbcb;
    border-radius: 0px;
    padding: 10px;
}

.singleProduct-section .slider-container.single-product-slider-nav {
    background-color: #f3f3f3;
    padding: 20px;
}

.single-product-slider-nav .slide-container {
    margin: 0 10px;
    border: 1px solid #cbcbcb;
    padding: 10px;
    background-color: white;
}

.single-product-slider-nav .slide-container.slick-current {
    border: 1px solid #007296;
}

/* pagination */
.pagination a {
    height: 40px;
    line-height: 38px;
    width: 40px;
    display: inline-block;
    text-align: center;
}

.pagination .active a {
    border: 1px solid #cbcbcb;
}

.pagination a.previous_link:before {
    content: "\f053";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
}

.pagination a.next_link:before {
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
}

.pagination a.previous_link {
    margin-right: 20px;
}

.pagination a.next_link {
    margin-left: 20px;
}

a:not([href]) {
    opacity: .5;
}

/*---------------------------------
* Contact us page
-----------------------------------*/

/* Forms */

.form-control {
    border-radius: 0px;
    min-height: 46px;
}

.checkout-page .form-control{
    min-height:0px;
}

.contact-info {
    /* margin-right: 10px; */
    padding: 30px;
    border: 1px solid #ced4da;
    height: 100%;
}

.contact-info p {
    margin-bottom: 10px;
}

.form-group.required .form-label:after {
    content: " *";
    color: red;
}

/*---------------------------------
* Cart
-----------------------------------*/

.cart-section .table-responsive {
    border: 1px solid #cbcbcb;
}

@media (min-width: 768px) {

    .bestDeal-section .slick-prev {
        top: -43px;
        left: 270px;
    }

    .bestDeal-section .slick-next {
        top: -43px;
        left: 300px;
    }

    h1 {
        font-size: 40px;
    }

    .heading-lg {
        font-size: 45px;
    }

    /* Topbar*/

    /* Cart */
    .cart-parent {
        position: relative;
        display: block;
        padding: 5px;
    }

    .cart-parent:hover .cart-expanded {
        display: block;
    }

    .cart-expanded {
        position: absolute;
        right: -20px;
        top: 30px;
        min-width: 300px;
        background: white;
        padding: 20px;
        z-index: 1;
        border: 1px solid #cbcbcb;
    }

    .cart-expanded-total {
        font-size: 16px;
        font-family: 'Muli', sans-serif;
        padding-top: 10px;
        border-top: 1px solid #CBCBCB;
    }

    .cart-list-item {
        margin-bottom: 20px;
    }

    .cart-list-item img {
        max-width: 75px;
    }


    .cart-expanded .btn-primary,
    .cart-expanded .btn-secondary {
        padding: 10px 25px;
    }

    .navbar-brand {
        max-width: 100%;
    }

    /* Slider */

    .slider-banner .slide-container .container {
        margin-bottom: 40px;
    }

    .slick-next {
        right: 25px;
    }

    .slick-prev {
        left: 25px;
        z-index: 2;
    }

    .slider-banner .slick-dots li button::before {
        color: transparent;
        display: block;
        height: 10px;
        width: 10px;
        background-color: white;
        border-radius: 50%;
        transition: .3s;
    }

    /* Features */

    .banner-features {
        justify-content: center;
        flex-wrap: nowrap;
    }

    .banner-feature {
        width: auto;
        margin: 0px 32px;
    }

    .banner-feature:after {
        content: '';
        display: block;
        position: absolute;
        width: 1px;
        height: 100%;
        background-color: #C4C4C4;
        right: -32px;
    }

    /* .addToCard-container {
        justify-content: space-evenly;
    } */

    .quantity-input {
        margin-right: unset;
    }

    .about-section:before {
        content: "";
        position: absolute;
        display: block;
        background-color: rgb(0, 114, 150);
        width: 35%;
        height: 100%;
        top: 0;
        left: 0;
    }

}


@media (min-width:992px) {
    .main-nav .navbar-collapse {
        height: auto;
        overflow: visible;
    }

    .nav-item.has-children {
        position: relative;
    }

    .nav-item.has-children .sub-menu {
        position: absolute;
        top: 100%;
        left: -20px;
        min-width: 250px;
        border: 1px solid #cbcbcb;
    }

    .nav-item.has-children:hover .sub-menu {
        display: block;

    }

    .mega-container {
        padding: 20px 15px;
        top: 40px;
    }

    .main-nav .navbar-collapse .navbar-nav>.nav-item {
        border: 0px;
        display: inline-block;
    }

    .main-nav .navbar-collapse .navbar-nav>.nav-item.browse-categories .nav-link {
        padding-left: 20px;
    }

    .main-nav .navbar-collapse .navbar-nav>.nav-item .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }

    .menu-dropdown {
        display: none;
    }

    .browse-categories:hover .mega-container {
        display: block;
    }

    .slider-banner .slick-dots {
        bottom: 60px;
    }


}

@media (min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1292px;
    }
}