

/*=================================================
08:: Section Home Slider
=================================================*/

main .owl-nav .owl-prev,
main .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    font-size: 40px;
}

main .owl-nav button:hover,
main .owl-nav button:focus {
    background-color: var(--aq-secondary) !important;
}

main .owl-nav .owl-next {
    position: absolute;
    left: auto;
    right: 20px;
}

.item.slider-item {
    position: relative;
}

.item.slider-item:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.7;
}

.container.slider-overlay {
    top: 0;
    left: 10%;
    right: 10%;
    color: #fff;
    bottom: 0;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    -ms-flex-align: center;
    z-index: 9;
}

.slide-content {
    max-width: 620px;
    color:#fff;
}

.slide-content h2.title {
    font-size: 60px;
    text-transform: capitalize;
    letter-spacing: 1.4px;
    color:#fff;
}

.home-slider .owl-item img {
    min-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.slider-btn {
    margin-top: 30px;
}

.slider-btn .btn-theme {
    font-size:16px !important;
    padding: 12px 15px !important;
    -webkit-box-shadow: 2px 5px 14px var(--aq-black);
    box-shadow: 2px 5px 14px var(--aq-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;

}

.slider-btn .btn-theme:hover {
    -webkit-box-shadow: 2px 5px 20px var(--aq-black);
    box-shadow: 2px 5px 20px var(--aq-black);
}

.slider-btn i {
    font-size: 20px;
}

body .owl-carousel .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    display: inline-block;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 999;
}

body .owl-carousel .owl-dots .owl-dot {
    height: 8px;
    border-radius: 40px;
    width: 30px;
    margin: 5px;
    background-color: var(--aq-primary-dark);
    border: 2px solid #fff;
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
}

body .owl-carousel .owl-dots .owl-dot.active {
    width: 40px;
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
}


/*=================================================
11 :: Section About
=================================================*/

.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::before {
    content: '';
    background-image: url(../images/elements-01.png);
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
    height: 424px;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center left;
    z-index: -1;
    -webkit-animation: zoomeffect2 15s infinite;
    animation: zoomeffect2 15s infinite;
}

.about-big-img {
    max-width: 460px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-box-shadow: 2px 2px 35px #33333336;
    box-shadow: 2px 2px 35px #33333336;
}

.about-big-img img,
.about-small-img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.about-small-img {
    max-width: 290px;
    height: 230px;
    position: relative;
    right: 0;
    -webkit-box-shadow: 2px 2px 35px #33333336;
    box-shadow: 2px 2px 35px #33333336;
    margin: -150px -1px auto auto;
}

.about-small-img:hover .video-play-btn {
    background-color: var(--aq-primary-dark);
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
    color: #fff;
}

.about-video-overlay {
    background-color: #33333369;
    position: absolute;
    border: 8px solid #f7f7f7;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9;
}

.about-video-overlay a.video-play-btn {
    -webkit-box-shadow: -6px 3px 17px #0000004d;
    box-shadow: -6px 3px 17px #0000004d;
    height: 60px;
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 22px;
    color: var(--aq-secondary);
    background-color: var(--aq-white);
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
}

.about-list {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 15px;
    max-width: 440px;
    display: -ms-grid;
    display: grid;
}

.about-list-col:hover * {
    color: #fff;
}

.about-list-col {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 105px;
    position: relative;
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
}

.about-list-col:hover {
    background-color: var(--aq-primary);
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
}

.about-list-col::after {
    content: '';
    width: 100px;
    height: 50px;
    border-top: 2px solid var(--aq-primary);
    border-right: 2px solid var(--aq-primary);
    position: absolute;
    top: -1px;
    right: -1px;
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
}

.about-list-col:hover::after {
    width: 100%;
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
    height: 100%;
}

.about-list-col .icon {
    font-size: 30px;
    margin-right: 15px;
}

.about-list-col p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
}


/*=================================================
12 :: Section Services
=================================================*/

.our-services {
    width: 100%;
    position: relative;
}

.our-services .container {
    position: relative;
}

.our-services .container:after {
    content: '';
    background-image: url(../images/elements-01.png);
    position: absolute;
    max-width: 270px;
    left: -38px;
    right: 0;
    top: 0;
    bottom: 10%;
    background-repeat: no-repeat;
    background-position: bottom left;
    -webkit-animation: zoomeffect2 15s infinite;
    animation: zoomeffect2 15s infinite;
}

.services-col {
    position: relative;
    z-index: 1;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    -webkit-box-shadow: 2px 2px 30px #ccc;
    box-shadow: 2px 2px 30px #ccc;
    border: 0;
}

.services-col .services-img {
    overflow: hidden;
    position: relative;
}

.services-col .services-img img {
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
}

.services-col .services-img:after {
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.services-col:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.services-col:hover .services-img:after {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

.services-col:hover .service-icon {
    color: var(--aq-white);
    background-color: var(--aq-primary);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transform: translate(0, -70%);
    transform: translate(0, -70%);
}

.services-col:hover .card-body:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.services-col .card-body {
    padding-bottom: 30px;
    padding-top: 0;
}

.services-col .card-body h4 {
    text-transform: capitalize;
    margin-top: 60px;
    font-weight: bold;
}

.service-icon {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: var(--aq-white);
    color: var(--aq-primary);
    width: 80px;
    height: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 40px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 6px;
    -webkit-box-shadow: 2px 2px 10px #ccc;
    box-shadow: 2px 2px 10px #ccc;
    position: absolute;
    right: 0;
    left: 0;
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
}

.services-two .services-col {
    margin-bottom: 40px;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}


/*=========================================
28 :: Keyframes
==========================================*/

@-webkit-keyframes sonarWave {
    from {
        opacity: 0.4;
    }
    to {
        -webkit-transform: scale(3);
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes sonarWave {
    from {
        opacity: 0.4;
    }
    to {
        -webkit-transform: scale(3);
        transform: scale(3);
        opacity: 0;
    }
}

@-webkit-keyframes sonarWave2 {
    from {
        opacity: 0.6;
    }
    to {
        -webkit-transform: scale(5);
        transform: scale(5);
        opacity: 0;
    }
}

@keyframes sonarWave2 {
    from {
        opacity: 0.6;
    }
    to {
        -webkit-transform: scale(5);
        transform: scale(5);
        opacity: 0;
    }
}

@-webkit-keyframes hover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
        animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    }
    25% {
        -webkit-transform: translateY(-6.25px);
        transform: translateY(-6.25px);
        -webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
        animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
        animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    }
    75% {
        -webkit-transform: translateY(6.25px);
        transform: translateY(6.25px);
        -webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
        animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes hover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
        animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    }
    25% {
        -webkit-transform: translateY(-6.25px);
        transform: translateY(-6.25px);
        -webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
        animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
        animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    }
    75% {
        -webkit-transform: translateY(6.25px);
        transform: translateY(6.25px);
        -webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
        animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media (hover: hover) {
    /* base hover styles from above */
    .list li:nth-child(1) span {
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }
    .list li:nth-child(2) span {
        -webkit-transition-delay: 0.05s;
        transition-delay: 0.05s;
    }
    .list li:nth-child(3) span {
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }
    .list li:nth-child(4) span {
        -webkit-transition-delay: 0.15s;
        transition-delay: 0.15s;
    }
    .list li:nth-child(5) span {
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }
    .list li:nth-child(6) span {
        -webkit-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }
    .list li:nth-child(7) span {
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }
    .list li:nth-child(8) span {
        -webkit-transition-delay: 0.35s;
        transition-delay: 0.35s;
    }
    .list li:nth-child(9) span {
        -webkit-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }
    .list li:nth-child(10) span {
        -webkit-transition-delay: 0.45s;
        transition-delay: 0.45s;
    }
    .list li:nth-child(11) span {
        -webkit-transition-delay: 0.5s;
        transition-delay: 0.5s;
    }
    .list li:nth-child(12) span {
        -webkit-transition-delay: 0.55s;
        transition-delay: 0.55s;
    }
    .list li:nth-child(13) span {
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s;
    }
    .list li:nth-child(14) span {
        -webkit-transition-delay: 0.65s;
        transition-delay: 0.65s;
    }
    .list li:nth-child(15) span {
        -webkit-transition-delay: 0.7s;
        transition-delay: 0.7s;
    }
    .list li:nth-child(16) span {
        -webkit-transition-delay: 0.75s;
        transition-delay: 0.75s;
    }
    .list li:nth-child(17) span {
        -webkit-transition-delay: 0.8s;
        transition-delay: 0.8s;
    }
    .list li:nth-child(18) span {
        -webkit-transition-delay: 0.85s;
        transition-delay: 0.85s;
    }
    .list li:nth-child(19) span {
        -webkit-transition-delay: 0.9s;
        transition-delay: 0.9s;
    }
    .list li:nth-child(20) span {
        -webkit-transition-delay: 0.95s;
        transition-delay: 0.95s;
    }
    .list li:nth-child(21) span {
        -webkit-transition-delay: 1s;
        transition-delay: 1s;
    }
}

.lines {
    left: 0;
    right: 0;
    margin: auto;
    width: 90vw;
}

.lines,
.lines .line {
    position: absolute;
    top: 0;
    height: 100%;
}

.lines .line {
    width: 1px;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.lines .line:after {
    content: "";
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(75%, #fff), to(#fff));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 75%, #fff);
    -webkit-animation: run 7s 0s infinite;
    animation: run 7s 0s infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.lines .line:first-child {
    margin-left: -25%;
}

.lines .line:first-child:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.lines .line:nth-child(3) {
    margin-left: 25%;
}

.lines .line:nth-child(3):after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

@-webkit-keyframes run {
    0% {
        top: -50%;
    }
    to {
        top: 110%;
    }
}

@keyframes run {
    0% {
        top: -50%;
    }
    to {
        top: 110%;
    }
}


/*=================================================
42 :: Shop Page
=================================================*/

.shop-filter-bar {
    margin-bottom: 40px;
}

.shop-filter-bar select.form-control {
    min-width: 250px;
    border: 1px solid #e1e1e1;
    font-size: 16px;
}

.ratting .star {
    font-size: 14px;
    margin: 0px;
    color: var(--aq-primary);
}

.product-item {
    border: 0;
    margin-bottom: 30px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-shadow: 1px 5px 33px #e8e8e8;
    box-shadow: 1px 5px 33px #e8e8e8;
}

.product-item .product-img {
    position: relative;
    overflow: hidden;
}

.product-item .product-title a {
    color: var(--aq-black);
}

.product-item .product-overlay {
    top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ffffff9e;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
    opacity: 0;
}

.product-item span.product-price {
    margin-top: 5px;
}

.product-item span.product-price ins {
    font-weight: 500;
    margin-right: 5px;
}

.product-item:hover {
    -webkit-box-shadow: 1px 5px 50px #c2bcbc;
    box-shadow: 1px 5px 50px #c2bcbc;
}

.product-item:hover .product-overlay {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: var(--aq-transition);
    transition: var(--aq-transition);
    opacity: 1;
}

.product-item .btn.add-cart {
    background-color: #fff;
    padding: 8px 30px;
    -webkit-box-shadow: 2px 2px 10px #ccc;
    box-shadow: 2px 2px 10px #ccc;
    border-radius: 40px;
    color: var(--aq-primary);
}

.product-item .btn.add-cart:hover {
    background-color: var(--aq-primary);
    color: var(--aq-white);
}


/*=================================================
43 :: Product single page
=================================================*/

.produc-qty span {
    cursor: pointer;
    background: var(--aq-gray);
    color: var(--aq-dark);
    padding: 10px 14px;
    height: 40px;
    display: block;
    vertical-align: middle;
    text-align: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.ps-item-custom .form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 20px;
}

.check-label {
    border-radius: 0;
    border: 0;
    font-weight: bold;
    height: 40px;
    font-size: 18px;
    border-radius: 0;
    border: 0;
    background-color: var(--aq-gray);
    color: var(--aq-dark);
}

.ps-item-custom .btn-check {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.produc-qty span:hover {
    color: #fff;
    background-color: var(--aq-primary);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.produc-qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.item-featured .list-group {
    background-color: transparent;
    padding-top: 15px;
}

.item-featured .list-group .list-group-item {
    padding: 6px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
    background-color: transparent;
}

.item-featured .list-group .list-group-item:before {
    content: '';
    color: var(--aq-primary);
    margin-right: 10px;
    width: 8px;
    height: 8px;
    border-left: 1px solid;
    border-top: 1px solid;
    -webkit-transform: rotate(134deg);
    transform: rotate(134deg);
    display: block;
}

span.product-price {
    font-size: 24px;
    margin: 20px 00;
    display: block;
}

span.product-price del {
    opacity: 0.5;
    margin-left: 10px;
    font-size: 80%;
}

.produc-qty input {
    min-height: 40px !important;
    border: 0;
    font-size: 20px;
    height: 40px;
    padding: 0;
    border-radius: 0;
    max-width: 50px;
    background-color: #fff;
    text-align: center;
}

.product-color .check-label {
    width: 40px;
    height: 40px;
}

.item-review .comment-author {
    width: 150px;
    height: 150px;
}

.item-review .comment-author img {
    width: 150px;
    height: 150px;
}

.item-review .author-content-wrap h5 strong {
    font-size: 20px;
}

.item-review .author-content-wrap h5 span {
    margin-left: 15px;
    font-weight: 400;
    opacity: 0.9;
}

.item-review .author-content-wrap h5 span i {
    font-size: 20px;
}

.item-details-tabs .form-control {
    border: 1px solid #ccc;
}

.item-details-tabs .nav-link {
    font-size: 20px;
    text-transform: uppercase;
    padding: 15px 30px;
    background-color: var(--aq-gray);
    color: var(--aq-black);
}

.item-details-tabs .comment-respond {
    padding: 0;
    border-top: 0;
    margin-bottom: 0;
}

.related-products .product-item {
    margin-top: 15px;
}

*/
/*-- Product single page comment section --*/

#product_single .item {
    text-align: center;
}

#product_singlethum .item {
    margin: 5px;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

.owl-theme .owl-nav [class*='owl-'] {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.owl-theme .owl-nav [class*='owl-'].disabled:hover {
    background-color: #D6D6D6;
}

.item-details-tabs .nav-link {
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0;
}

.item-details .col-md-12 .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.item-details .col-md-12 .btn i {
    width: auto;
    opacity: 1;
    margin-right: 10px;
}

.item-details .col-md-12 .btn i:before {
    font-size: 20px !important;
}

.btn-check:checked+.btn-outline-primary,
.check-label:hover {
    color: #fff;
    background-color: var(--aq-primary);
}


/*=================================================
44 :: Cart Page
=================================================*/

.cart-table thead {
    background-color: var(--color-second);
    border: 0;
    padding: 20px;
}

.page-cart .table {
    background-color: #fff;
    padding: 15px !important;
    margin-bottom: 0;
    min-width: 600px;
    text-align: center;
}

.page-cart .btn-group {
    -webkit-box-shadow: 0px 1px 21px #ccc;
    box-shadow: 0px 1px 21px #ccc;
    border-radius: 6px !important;
    overflow: hidden;
}

.page-cart .btn-theme:after {
    position: absolute;
    content: '';
    left: 84%;
}

.cart-table thead th {
    border: 1px solid #ccc !important;
    padding: 18px 15px;
    font-size: 20px;
}

.item-thumbnail a {
    display: block;
    width: 140px;
}

.item-thumbnail a img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.cart-table .item-row td {
    vertical-align: middle;
    padding: 40px 15px;
    border: 1px solid #ccc;
}

.item-thumbnail {
    width: 100px;
}

.item-name h5 {
    margin-bottom: 0;
}

.item-name h5 a {
    color: var(--aq-black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.item-row p {
    font-weight: normal;
    margin-bottom: 0;
    font-size: 14px;
}

td.item-qty .form-group {
    margin-bottom: 0;
    max-width: 60px;
    padding: 10px;
    height: 50px;
    border: 1px solid #eaeaea;
}

.item-remove a {
    color: var(--color-primary);
}

.item-row .produc-qty {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    header .sidbar-btn.icon {
        display: block!important;
    }
	header form.d-flex {
    float: left;
    width: 100%;
}
}

button.navbar-toggler2.last-menu.menu.icon{
	display:none;
}