* {
    margin: 0;
    padding: 0;
    font-family: 'Fraunces', serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

.row {
    width: 100%;
    height: 100%;
    margin: 0;
}

.container {
    width: 100%;
    height: 100%;
}

.container-fluid {
    width: 100%;
    height: 100%;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    width: 100%;
}

.swiper-slide {
    text-align: center;
    width: auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.section-heading h1 {
    text-align: center;
    margin-bottom: 0;
    position: relative;
    font-size: calc(1vw + 25px);
}

.section-heading .underline {
    display: inline-block;
    position: relative;
}

.section-heading .underline::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 130px;
    background: #000;
    bottom: 13px;
    left: 25px;
}

.section-heading .underline::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 120px;
    background: #000;
    bottom: 13px;
    right: 25px;
}

.secondary-heading {
    margin-bottom: 20px;
    position: relative;
}

.secondary-heading h1 {
    margin-bottom: 0;
    position: relative;
    font-size: calc(1vw + 20px);
}

.secondary-heading .underline {
    display: inline-block;
    position: relative;
    width: 100%;
}

.secondary-heading .underline::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    bottom: 13px;
    left: 0;
}

.custom-btn {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    background: #350e58;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    transition: all 0.3s;
}

.custom-btn:hover {
    background: orange;
    color: #350e58;
}

#reg-loader, #log-loader, #otp-loader, #fp-loader {
    font-size: 25px;
    display: none;
    text-align: center;
}

#reg-loader.show, #log-loader.show, #otp-loader.show, #fp-loader.show {
    display: block;
}

#thank-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

#thank-section .section-heading p {
    text-align: center;
    position: relative;
    font-size: calc(1vw + 15px);
}

#policy-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

#search-page-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

#search-page-section .col-md-12 {
    padding: 0;
}

#cart-alert-modal .modal-dialog, #cart-login-alert-modal .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
    margin-top: auto;
    margin-bottom: auto;
}

#cart-alert-modal .modal-body button, #cart-login-alert-modal .modal-body button {
    margin: 5px auto;
    display: block;
}

#progress-modal .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
    margin-top: auto;
    margin-bottom: auto;
}

#progress-modal .modal-body button {
    margin: 5px auto;
    display: block;
}

#mail-success-modal .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
    margin-top: auto;
    margin-bottom: auto;
}

#mail-success-modal .modal-body button {
    margin: 5px auto;
    display: block;
}

/*-----------------------------------------------------------Scroller----------------------------------------------------------------*/

/* width */

::-webkit-scrollbar {
    width: 5px;
}

/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: rgb(200, 199, 199);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: rgb(200, 199, 199);
}

/*-----------------------------------------------------------Header----------------------------------------------------------------*/

#header {
    width: 100%;
    height: 80px;
    background: #350e58;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

#alt-header {
    display: none;
    width: 100%;
    height: 110px;
    background: #350e58;
    padding: 3px;
}

#alt-header .upper {
    width: 100%;
    background: #350e58;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#alt-header .logo {
    width: 100px;
    height: 50px;
    margin-left: 5px;
}

#alt-header .lower {
    width: 100%;
    background: #350e58;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 90px;
    height: 70px;
    margin-left: 20px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.search-field {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 400px;
    z-index: 999;
}

.search-results {
    background: white;
    width: 100%;
    position: absolute;
    top: 35px;
    max-height: 300px;
    overflow-y: scroll;
}

.search-results>a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.search-results>a .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.search-results>a:hover .overlay {
    background: rgb(150, 179, 235);
}

.search-results .media {
    border-bottom: 1px solid gainsboro;
    padding: 2px 0;
}

.search-results .media-body {
    width: calc(100% - 50px - 1rem);
    padding: 0 5px;
}

.search-results p {
    margin-bottom: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.search-bar {
    display: flex;
    flex-direction: row;
    width: 100%;
}

#alt-header .search-bar {
    width: 100%;
}

.search-bar .search-box {
    width: 100%;
}

.search-bar .search-box input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    padding: 5px 7px;
    width: 100%;
}

.search-bar .search-btn button {
    border: none;
    outline: none;
    color: #350e58;
    background: orange;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.right ul {
    list-style: none;
    margin: 0;
}

.right ul li {
    display: inline-block;
    padding: 0 15px;
    color: orange;
    position: relative;
}

.right ul li a.profile-icon {
    position: relative;
    font-size: 30px;
}

.right ul li a.profile-icon i:nth-child(2) {
    font-size: 15px;
    color: #350e58;
    position: absolute;
    bottom: -6px;
    right: -11px;
    background: orange;
    padding: 2px;
    border-radius: 50%;
}

.right ul li ul {
    display: block;
    height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    list-style: none;
    margin: 0;
    position: absolute;
    right: -10px;
    top: 50px;
    background: #350e58;
    z-index: 99;
    width: 125px;
    transition: all 0.4s;
}

.right ul li ul li {
    display: block;
    padding: 8px 15px;
    color: orange;
}

.right ul li:hover ul {
    height: 136px;
    padding-top: 5px;
    padding-bottom: 10px;
}

#category-header {
    width: 100%;
    height: 34px;
    display: flex;
    align-items: center;
    padding: 5px 8px;
    background: #d8d2e0;
}

#category-header button {
    margin-right: 10px;
    width: 100px;
    font-weight: 700;
    padding: 2px;
}

#category-header button:hover {
    border: 2px solid black;
}

#category-header ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    overflow: hidden;
    height: 100%;
}

#category-header ul li {
    display: inline-block;
    padding: 0 15px;
    font-weight: 700;
}

#cat-navbar {
    width: 100%;
    background: none;
    position: absolute;
    top: 114px;
    z-index: 555;
    padding: 25px;
    left: -100%;
    transition: all 0.6s;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.white-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.8;
}

#cat-navbar.open {
    left: 0;
}

#cat-navbar .card {
    display: inline-block;
    border: none;
    margin: 15px;
    width: 100%;
    max-width: 400px;
}

#cat-navbar .menu {
    padding: 2px 10px;
    color: white;
    background: black;
    font-size: 23px;
}

#cat-navbar .menu p {
    margin-bottom: 0;
}

#cat-navbar .sub-menu {
    background: white;
    color: black;
    margin-left: 20px;
    padding: 25px;
}

#cat-navbar .sub-menu ul {
    list-style: none;
}

#cat-navbar .sub-menu ul li {
    padding: 5px;
}

#cat-navbar .sub-menu button {
    border: 1px solid #000;
    outline: none;
    float: right;
    margin-bottom: 15px;
}

/*-----------------------------------------------------------Hero----------------------------------------------------------------*/

#hero-section {
    width: 100%;
    /*height: calc(60vh - 80px);*/
    height: auto;
}

#hero-section img {
    width: 100%;
    /*height: 100%;*/
    height: 70vh;
}

#hero-section .swiper-container {
    height: auto !important;
    margin-bottom: 8px;
}

#hero-section .swiper-pagination-bullet-active {
    --swiper-theme-color: #350e58;
}

@media screen and (max-width: 435px) {
    #hero-section img {
        height: 50vh;
    }
}

/*-----------------------------------------------------------About----------------------------------------------------------------*/

.about-section-heading h2 {
    text-transform: uppercase;
    font-size: calc(1vw + 1vh + 20px);
}

#about-section {
    padding: 40px 8px;
}

.about-img {
    width: 400px;
    height: 250px;
    float: right;
    margin-left: 30px;
    margin-bottom: 10px;
    max-width: 100%;
}

.about-slider {
    width: 100%;
    height: 100%;
}

.about-img .about-slider-img {
    width: 400px;
    height: 250px;
    max-width: 100%;
}

.about-img .about-slider-img img {
    width: 100%;
    height: 100%;
}

.about-text {
    text-align: justify;
    margin-bottom: 40px;
}

/*-----------------------------------------------------------Home Slider----------------------------------------------------------------*/

.home-slider-section {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
}

.home-slider-section .container-fluid {
    padding: 0;
}

.home-product-slider {
    padding: 15px 0;
}


.home-slider-section .col-md-12 {
    padding: 0;
}

.home-product-slider-card {
    width: 190px;
    height: 330px;
    margin-right: 15px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 0px 3px 2px gainsboro;
}

.home-product-slider-card .pic {
    width: 100%;
    height: 200px;
}

.home-product-slider-card .pic img {
    width: 100%;
    height: 100%;
}

.home-product-slider-card .text {
    width: 100%;
    height: 130px;
    padding: 15px;
    background: #fff;
}

.home-product-slider-card .text h5 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.home-product-slider-card .text .crossed-price {
    text-decoration: line-through;
    color: red;
}

.home-product-slider-card .text button {
    width: 100%;
}

.home-product-slider {
    --swiper-theme-color: #350e58;
}

@media screen and (max-width: 435px) {
    .home-product-slider-card {
        width: 144px;
        height: 192px;
        margin-right: 10px;
    }
    .home-product-slider-card .pic {
        height: 117px;
    }
    .home-product-slider-card .text {
        height: 77px;
        padding: 2px;
    }
    .home-product-slider-card .text h5 {
        font-size: 15px;
        margin-bottom: 2px;
    }
    .home-product-slider-card .text button {
        font-size: 11px;
        padding: 2px 10px;
        width: auto;
        
    }
}

/*-----------------------------------------------------------Rel Product Slider----------------------------------------------------------------*/

#rel-product-section {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
}

#rel-product-section .section-heading {
    text-align: left;
    margin-bottom: 3px;
    position: relative;
}

#rel-product-section .section-heading h1 {
    text-align: left;
    margin-bottom: 0;
    position: relative;
    font-size: calc(1vw + 25px);
}

#rel-slider-section .container-fluid {
    padding: 0;
}

.rel-product-slider {
    padding: 15px 0;
}

.rel-product-slider-card {
    width: 190px;
    height: 330px;
    margin-right: 15px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 0px 3px 2px gainsboro;
}

.rel-product-slider-card .pic {
    width: 100%;
    height: 200px;
}

.rel-product-slider-card .pic img {
    width: 100%;
    height: 100%;
}

.rel-product-slider-card .text {
    width: 100%;
    height: 130px;
    padding: 15px;
    background: #fff;
}

.rel-product-slider-card .text h5 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.rel-product-slider-card .text .crossed-price {
    text-decoration: line-through;
    color: red;
}

.rel-product-slider-card .text button {
    width: 100%;
}

.rel-product-slider {
    --swiper-theme-color: #350e58;
}

@media screen and (max-width: 435px) {
    .rel-product-slider-card {
        width: 144px;
        height: 192px;
        margin-right: 10px;
    }
    .rel-product-slider-card .pic {
        height: 117px;
    }
    .rel-product-slider-card .text {
        relheight: 77px;
        padding: 2px;
    }
    .rel-product-slider-card .text h5 {
        font-size: 15px;
        margin-bottom: 2px;
    }
    .rel-product-slider-card .text button {
        font-size: 11px;
        padding: 2px 10px;
        width: auto;
        
    }
}

/*-----------------------------------------------------------Upper Footer----------------------------------------------------------------*/

#upper-footer {
    width: 100%;
    background: orange;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    flex-wrap: wrap;
}

#upper-footer .card {
    width: 300px;
    background: none;
    border: 1px solid #000;
    margin: 10px;
}

#upper-footer .card .pic {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

#upper-footer .card .pic img {
    height: 100px;
}

#upper-footer .card .text {
    width: 100%;
    text-align: center;
    padding: 15px;
}

/*-----------------------------------------------------------Category----------------------------------------------------------------*/

#category-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

#category-section .section-heading {
    text-align: left;
}

#category-section .section-heading h1 {
    background: #350e58;
    padding: 5px 19px;
    display: inline-block;
    color: orange;
    border-radius: 50px;
}

.product-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product-card {
    width: 190px;
    height: 330px;
    margin-right: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 0px 3px 2px gainsboro;
}

.product-card .pic {
    width: 100%;
    height: 200px;
}

.product-card .pic img {
    width: 100%;
    height: 100%;
}

.product-card .text {
    width: 100%;
    height: 130px;
    padding: 15px;
    background: #fff;
    text-align: center;
}

.product-card .text h5 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-card .text .crossed-price {
    text-decoration: line-through;
    color: red;
}

.product-card .text button {
    width: 100%;
}

.sort-book {
    width: 100%;
    border: 1px solid #350e58;
    margin-bottom: 15px;
}

.sort-book h4 {
    background: #350e58;
    color: white;
    padding: 7px 15px;
}

.sort-book .sort-cat {
    margin-bottom: 10px;
    padding-left: 20px;
}

.sort-book .sort-cat input {
    margin-right: 10px;
}

.sort-product {
    display: block;
}

.alt-sort-product {
    margin-bottom: 15px;
    display: none;
}

.alt-sort-product select {
    max-width: 100%;
    cursor: pointer;
    border: 0;
    background: #f2f3f7;
    color: #7b7e8c;
    font-weight: normal;
    padding: 0 1.25em;
    line-height: 1.25em;
    height: 2.5em;
    margin: 10px 0;
    transition: box-shadow .2s;
    border-radius: 10px;
    box-shadow: 6px 6px 10px rgb(0 0 0 / 10%), -6px -6px 10px white;
}

.alt-sort-product .container-fluid, .alt-sort-product .col-6 {
    padding: 0;
}

.alt-sort-product .container-fluid, .alt-sort-product .col-6:first-child {
    padding-right: 5px;
}

.alt-sort-product .container-fluid, .alt-sort-product .col-6:last-child {
    padding-left: 5px;
}

.alt-sort-product p {
    margin-bottom: 2px;
}

@media screen and (max-width: 767px) {
    .sort-product {
        display: none;
    }
    .alt-sort-product {
        display: block;
    }
    .product-container {
        justify-content: center;
    }
}

@media screen and (max-width: 435px) {
    .product-card {
        width: 144px;
        height: 192px;
        margin-right: 10px;
    }
    .product-card .pic {
        height: 117px;
    }
    .product-card .text {
        height: 77px;
        padding: 2px;
    }
    .product-card .text h5 {
        font-size: 15px;
        margin-bottom: 2px;
    }
    .product-card .text button {
        font-size: 11px;
        padding: 2px 10px;
        width: auto;
    }
    #category-section .col-md-9, #category-section .col-md-3 {
        padding: 0;
    }
}

/*-----------------------------------------------------------Product----------------------------------------------------------------*/

#product-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

#product-section .product-pic {
    width: 100%;
    margin-bottom: 20px;
}

#product-section .product-text {
    margin-bottom: 20px;
}

#product-section .product-pic>img {
    width: auto;
    height: 400px;
}

#product-section .product-text .product-name {}

#product-section .product-text .product-price {
    font-size: 40px;
}

#product-section .product-text .product-crossed-price {
    font-size: 30px;
    text-decoration: line-through;
    color: red;
}

#product-section .product-text button {
    margin-bottom: 20px;
}

#product-section .product-img-row {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

#product-section .product-img-row img {
    width: 86px;
    height: 100px;
    margin-right: 7px;
    border: 3px solid #350e58;
    cursor: pointer;
}

/*-----------------------------------------------------------Cart----------------------------------------------------------------*/

#cart-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #f1f3f6;
}

#cart-section .col-md-8, #cart-section .col-md-4 {
    padding: 0;
}

#cart-section .cart-box {
    display: flex;
    flex-direction: row;
    border-bottom: 1px dotted #350e58;
    padding: 5px 0;
    background: #fff;
    padding: 5px 8px;
}

#cart-section .price-details {
    background: #fff;
}

#cart-section .product-price .crossed-price {
    text-decoration: line-through;
    color: red;
}

#cart-section .cart-box .left img {
    width: 150px;
    height: 200px;
    margin-bottom: 5px;
}

#cart-section .cart-box .left .qty {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

#cart-section .cart-box .left .qty input {
    width: 30px;
    height: 30px;
    outline: none;
    border-radius: 0;
    height: 28px;
    border: 0.3px solid black;
    text-align: center;
}

#cart-section .cart-box .left .qty button {
    background: orange;
    padding: 0.1rem 0.49rem;
    border: none;
    outline: none;
}

#cart-section .cart-box .right {
    width: calc(100% - 150px);
    padding: 5px 15px;
}

#cart-section .cart-box .right .product-name {
    margin-bottom: 1px;
}

#cart-section .cart-box .right .product-desc {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#cart-section .price-details>h4 {
    background: #350e58;
    color: white;
    padding: 7px 15px;
}

#cart-section .price-details p {
    font-size: 18px;
}

#cart-section .price-details .row:last-child {
    padding: 10px;
    border-top: 2px solid gainsboro;
    border-bottom: 2px solid gainsboro;
}

#cart-section .price-details a {
    background: orange;
    padding: 8px;
    width: 100%;
    margin-top: 15px;
    font-size: 20px;
}

.empty-cart {
    text-align: center;
}

.empty-cart img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    margin: 10px auto;
}

/*-----------------------------------------------------------Checkout----------------------------------------------------------------*/

#checkout-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #f1f3f6;
}

#checkout-section .col-md-8, #checkout-section .col-md-4 {
    padding: 0;
}

#checkout-section .shipping-details {
    background: #fff;
    padding: 20px;
}

#checkout-section .price-details {
    background: #fff;
}

#checkout-section .price-details>h4 {
    background: #350e58;
    color: white;
    padding: 7px 15px;
}

#checkout-section .price-details p {
    font-size: 18px;
}

#checkout-section .price-details .row:last-child {
    padding: 10px;
    border-top: 2px solid gainsboro;
    border-bottom: 2px solid gainsboro;
}

#checkout-section .price-details button {
    background: orange;
    padding: 8px;
    width: 100%;
    margin-top: 15px;
    font-size: 20px;
}

/*-----------------------------------------------------------Profile----------------------------------------------------------------*/

#profile-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

#profile-section .profile-card {
    width: 100%;
    max-width: 600px;
    display: flex;
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, .08);
    font-family: 'Josefin Sans', sans-serif;
    margin: 0 auto;
    flex-wrap: wrap;
}

#profile-section .profile-card .left {
    width: 35%;
    background: linear-gradient(to right, #01a9ac, #01dbdf);
    padding: 30px 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-align: center;
    color: #fff;
}

#profile-section .profile-card .left img {
    border-radius: 5px;
    margin-bottom: 10px;
}

#profile-section .profile-card .left h4 {
    margin-bottom: 10px;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

#profile-section .profile-card .right {
    width: 65%;
    background: #fff;
    padding: 30px 25px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#profile-section .profile-card .right .info {
    margin-bottom: 25px;
}

#profile-section .profile-card .right .info h3 {
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
    color: #353c4e;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: calc(1vw + 12px);
}

#profile-section .profile-card .right .info_data {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

#profile-section .profile-card .right .info_data .data button {
    background: linear-gradient(to right, #01a9ac, #01dbdf);
    color: #fff;
}

/*-----------------------------------------------------------Profile----------------------------------------------------------------*/

#order-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #f1f3f6;
}

#order-section .container {
    padding: 0;
}

#order-section .order-card {
    background: white;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: row;
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, .08);
    font-family: 'Josefin Sans', sans-serif;
    margin: 0 auto;
    margin-bottom: 10px;
    padding: 10px 8px;
    border-radius: 5px;
}

#order-section .order-card .left {
    width: 100%;
}

#order-section .order-card .left p {
    margin-right: 15px;
}

#order-section .order-card .right {
    position: relative;
    width: 185px;
}

#order-section .order-card .right a {
    position: relative;
    width: 100%;
    display: block;
}

#order-section .order-card .right .status {
    padding: 5px;
    text-transform: uppercase;
    box-shadow: 0px 2px 20px -8px rgba(0, 0, 0, 0.75);
    margin-bottom: 15px;
    border-radius: 3px;
    text-align: center;
    color: white;
}

#order-section .order-card .right .status.failed, #order-section .order-card .right .status.cancelled  {
    background: #dc3545;
}

#order-section .order-card .right .status.success, #order-section .order-card .right .status.delivered {
    background: #28a745;
}

#order-section .order-card .right .status.dispatched, #order-section .order-card .right .status.processing {
    background: #089add;
}

/*-----------------------------------------------------------Login----------------------------------------------------------------*/

#log-reg-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

#log-reg-section .contents {
    padding: 0;
}

#log-reg-section .contents .row {
    box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 75%);
    padding: 25px;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
}

#log-reg-section .contents .heading {
    text-align: center;
    position: relative;
}

#log-reg-section .contents .heading h3 {
    margin-bottom: 0;
}

#log-reg-section .contents .heading span {
    display: inline-block;
    color: #bfbfbf;
}

#log-reg-section .contents .heading span::before {
    content: '';
    position: absolute;
    height: 1.5px;
    width: 130px;
    background: #bfbfbf;
    bottom: 13px;
    right: 25px;
}

#log-reg-section .contents .heading span::after {
    content: '';
    position: absolute;
    height: 1.5px;
    width: 130px;
    background: #bfbfbf;
    bottom: 13px;
    left: 25px;
}

@media screen and (max-width: 767px) {
    #log-reg-section .container .row .col-md-6:first-child {
        display: none;
    }
}

#log-reg-section small {
    display: block;
}

/*-----------------------------------------------------Footer----------------------------------------------------*/

footer {
    bottom: 0px;
    width: 100%;
    background: #111;
    color: #d9d9d9;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

footer .main-content {
    display: flex;
    padding: 20px 0;
}

footer .main-content .box {
    flex-basis: 50%;
    padding: 10px 20px;
}

footer .box h2 {
    font-size: 1.125em;
    font-weight: 600;
    text-transform: uppercase;
}

footer .box .footer_content {
    margin: 20px 0 12px 0;
    position: relative;
}

footer .box .footer_content:before {
    position: absolute;
    content: '';
    top: -10px;
    height: 2px;
    width: 100%;
    background: #1a1a1a;
}

footer .box .footer_content:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #ea8810;
    top: -10px;
}

footer .left .footer_content p {
    text-align: justify;
}

footer .left .footer_content .social {
    margin: 20px 0 0 0;
}

footer .left .footer_content .social a {
    padding: 0 2px;
}

footer .left .footer_content .social a span {
    height: 40px;
    width: 40px;
    background: #1a1a1a;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

footer .left .footer_content .social a span:hover {
    background: white;
}

footer .left .footer_content .corporate {
    margin: 20px 0 0 0;
}

footer .left .footer_content .corporate li {
    list-style: none;
    display: inline-block;
    padding: 10px;
    margin: 5px;
    color: white;
    background: #1a1a1a;
    border-radius: 5px;
    transition: 0.3s;
}

footer .left .footer_content .corporate li a {
    text-decoration: none;
    color: inherit;
}

footer .left .footer_content .corporate li:hover {
    background: #ea8810;
}

footer .center .footer_content .fas, .center .footer_content .fab {
    font-size: 1.4375em;
    background: #1a1a1a;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

footer .center .footer_content .fas:hover {
    background: #ea8810;
}

footer .center .footer_content .fab:hover {
    background: #ea8810;
}

footer .center .footer_content .text {
    font-size: 1.0625em;
    font-weight: 500;
    padding-left: 10px;
}

footer .center .footer_content .phone {
    margin: 15px 0;
}

footer .center .footer_content .phone a {
    color: inherit;
    text-decoration: none;
}

footer .right form .text {
    font-size: 1.0625em;
    margin-bottom: 2px;
    color: #656565;
}

footer .right form .msg {
    margin-top: 10px;
}

footer .right form input, .right form .msgForm {
    width: 100%;
    font-size: 1.0625em;
    background: #151515;
    padding-left: 10px;
    border: 1px solid #222222;
}

footer .right form input:focus, .right form .msgForm:focus {
    outline-color: #3498db;
}

footer .right form input {
    height: 35px;
    outline: none;
    color: white;
}

footer .right form .btn {
    margin-top: 10px;
    width: 100%;
}

footer .right form .btn button {
    height: 40px;
    width: 100%;
    border: none;
    outline: none;
    background: #ea8810;
    font-size: 1.0625em;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}

footer .right form .btn button:hover {
    background: #000;
}

footer .bottom center {
    padding: 5px;
    font-size: 0.9375em;
    background: #151515;
}

footer .bottom center span {
    color: #656565;
}

footer .bottom center a {
    color: #ea8810;
    text-decoration: none;
}

footer .bottom center a:hover {
    text-decoration: underline;
}

footer .msg textarea {
    width: 100%;
    font-size: 1.0625em;
    background: #151515;
    padding-left: 10px;
    border: 1px solid #222222;
    color: white;
    outline: none;
}

@media screen and (max-width: 900px) {
    footer {
        position: relative;
        bottom: 0px;
    }
    footer .main-content {
        flex-wrap: wrap;
        flex-direction: column;
    }
    footer .main-content .box {
        margin: 5px 0;
    }
}

/*-----------------------------------------------------------Responsive----------------------------------------------------------------*/

@media screen and (max-width: 900px) {
    #header {
        display: none;
    }
    #alt-header {
        display: block;
    }
    #alt-header .search-field {
        width: 100%;
    }
    .right ul li a.profile-icon {
        font-size: 20px;
    }
    .right ul li ul {
        top: 93px;
    }
    #cat-navbar {
        top: 144px;
    }
    #product-section .product-pic {
        width: 100%;
        margin-bottom: 20px;
    }
    #product-section .product-pic>img {
        height: 200px;
    }
    #product-section .product-img-row img {
        width: 55px;
        height: 60px;
        margin-right: 4px;
        border: 2px solid #350e58;
    }
    #product-section .product-text .product-name {
        font-size: 25px;
    }
    #upper-footer .card {
        width: 130px;
        height: 250px;
    }
    #upper-footer .card .pic {
        padding: 5px;
    }
    #upper-footer .card .pic img {
        height: 55px;
    }
    #upper-footer .card .text {
        padding: 5px;
    }
    #upper-footer .card .text h4 {
        font-size: 18px;
    }
}