/*--------------------------------------------------------------
	General
--------------------------------------------------------------*/


/* Droid Arabic Kufi (Arabic) http://www.google.com/webfonts/earlyaccess */

@font-face {
    font-family: 'Droid Arabic Kufi';
    font-style: normal;
    font-weight: 300;
    src: url('./fonts/DroidKufi-Regular.ttf') format('truetype');
}

:root {
    --dark_blue: #1B2646;
    --voilet: #6471B5;
    --primary_color: #f4d443;
    --secondary_color: #F7AB72;
    --nice_green: #55c3b6;
}

body {
    background: #F4F8FC;
    color: #717377;
    font-family: "Raleway", sans-serif;
}

a {
    color: var(--primary_color);
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: var(--secondary_color);
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
    color: var(--dark_blue);
}

.main-page {
    margin-top: 110px;
}

.wow {
    visibility: hidden;
}


/*--------------------------------------------------------------
	Scrollbar
--------------------------------------------------------------*/


/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: var(--dark_blue);
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--voilet);
    border-radius: 5px;
    transition: background 0.5s ease-in-out;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #c1c3c7;
}


/*--------------------------------------------------------------
	Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    background: transparent;
    color: var(--primary_color);
    border: 3px solid var(--primary_color);
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s ease-in-out;
    z-index: 999;
}

.back-to-top i {
    font-size: 36px;
    padding-top: 7px;
}

.back-to-top:focus {
    background: var(--primary_color);
    color: #fff;
    border: 1px solid var(--primary_color);
    outline: none;
}

.back-to-top:hover {
    background: linear-gradient(to top, var(--primary_color), var(--secondary_color));
    color: #fff;
    border: 1px solid var(--primary_color);
}


/*--------------------------------------------------------------
	Header
--------------------------------------------------------------*/

#header {
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    /* background-image: linear-gradient(to right top, #090621, #6E79F5); */
    z-index: 997;
}

#header #logo img {
    padding: 5px 0;
    margin: 0;
    max-height: 68px;
}

#header #logo {
    display: inline-block;
}


/*--------------------------------------------------------------
	Navigation Menu
--------------------------------------------------------------*/

.topnav {
    background-color: #050505;
    padding: 0 30px;
    color: #fff;
}

.topnav a {
    text-align: center;
    color: #f4d443;
    text-transform: none;
    text-decoration: none;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 7px;
    position: relative;
    font-size: 15px;
    font-weight: 600;
}

.topnav a:hover {
    color: var(--primary_color);
}

.topnav a.active {
    color: var(--primary_color);
}

.topnav .search-container {
    display: inline-block;
    width: calc(100% - 570px);
    margin: 0 15px;
}

.topnav input[type=text] {
    padding: 10px 30px;
    margin-top: 5px;
    font-size: 15px;
    border: none;
    outline: none;
    width: calc(100% - 45px);
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}

.topnav input[type=text]:focus {
    border: none;
    outline: none;
}

.topnav .search-container .all {
    float: left;
    padding: 10px 15px;
    margin-top: 5px;
    margin-left: 15px;
    background: var(--primary_color);
    color: #fff;
    font-size: 15px;
    border: none;
    cursor: pointer;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}

.topnav .search-container .all:hover {
    background: var(--secondary_color);
}

.topnav .search-container button {
    float: right;
    padding: 10px 15px;
    margin-top: 5px;
    background: var(--primary_color);
    color: #fff;
    font-size: 15px;
    border: none;
    cursor: pointer;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}

.topnav .search-container button:hover {
    background: var(--secondary_color);
}

.topnav .cart {
    margin-top: 15px;
}

.topnav .cart img {
    max-height: 25px;
}

.topnav .cart span {
    position: absolute;
    top: 0;
    right: 2px;
    width: 20px;
    height: 20px;
    background-color: var(--primary_color);
    border-radius: 10px;
    font-size: 10px;
    font-family: sans-serif;
    font-weight: 600;
    padding: 2px 0;
    color: black;
}

.topnav .cart:hover {
    color: #fff;
}


.topnav .favorite span {
    position: absolute;
    top: 10px;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary_color);
    border-radius: 10px;
    font-size: 10px;
    color: #000;
    font-family: sans-serif;
    font-weight: 600;
    padding: 2px 0;
}


.topnav button:focus {
    outline: none;
}


/* Nav Menu Essentials */

#header .navbar {
    padding: 0 15px;
    text-align: left;
    min-height: 40px;
    /* background-color: #f4d443; */
    background: linear-gradient(45deg, #f4d443, #f4d443);
    box-shadow: inset -6px 4px 20px #888888;
}

.navbar-light .navbar-toggler {
    color: #fff;
    border: none;
}

.navbar .navbar-nav {
    padding: 0 15px;
}

.navbar-nav a {
    color: #2b2929 !important;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 10px;
    position: relative;
    font-weight: 600;
}

.navbar-nav a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: var(--primary_color);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.navbar-nav a:hover:after {
    width: 100%;
    left: 0;
}

.navbar-nav a:hover {
    color: #b4b2ac;
}

.navbar-nav .nav-item {
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 10px;
    position: relative;
    font-size: 15pt;
}

.navbar-nav .nav-item i {
    font-size: 15pt;
    padding: 0 5px;
}

.navbar-nav .nav-item span {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: var(--primary_color);
    text-align: center;
    padding: 5px 0;
    font-size: 10px;
    color: #fff;
    font-weight: 500;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: auto;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.navbar-nav .dropdown-content {
    min-width: 250px;
}

.dropdown-content a {
    color: #505050;
    padding: 5px 15px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    border-bottom: 1px solid #f1f3f7;
}

.dropdown-content a:hover {
    background-color: #f1f3f7;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 991px) {
    #header {
        position: absolute;
        top: 0;
        padding: 0;
        transition: all 0.5s;
    }

    .topnav {
        padding: 0 15px;
    }

    .topnav .search-container {
        display: block;
        width: 100%;
        margin: 0;
        padding: 10px;
    }

    .topnav .search-container button {
        margin-right: 0;
        margin-top: 0;
    }

    .topnav input[type=text] {
        margin-top: 0;
        width: calc(100% - 45px);
    }

    .main-page {
        margin-top: 170px;
    }
}

@media (max-width: 580px) {
    .nav-icon span {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-icon span {
        display: none;
    }

    #header #logo img {
        padding: 10px 0 5px 0;
        margin: 0;
        width: 100px;
    }
}

@media (max-width: 380px) {
    .topnav a {
        transform: scale(0.85);
        padding: 10px 5px;
    }

    .topnav .cart span {
        right: 0px;
    }
}


/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/

#slider {
    background: transparent;
    position: relative;
    z-index: 1;
}

#slider .container {
    position: absolute;
    top: 0;
    padding: 0;
    min-width: 100%;
}

#slider .carousel-section {
    background: transparent;
}

#slider .slider-carousel {
    position: relative;
    background-color: transparent;
}

#slider .item {
    background-color: transparent;
    width: 100%;
}

#slider .owl-prev {
    position: absolute;
    left: 30px;
    top: 20%;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    text-align: center;
}

#slider .owl-next {
    position: absolute;
    right: 30px;
    top: 20%;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    text-align: center;
}

#slider .owl-prev:hover {
    color: rgba(255, 255, 255, 1);
}

#slider .owl-next:hover {
    color: rgba(255, 255, 255, 1);
}

#categories {
    position: relative;
    padding-top: 897px;
}

#categories .container {
    padding: 15px;
    min-width: 100%;
    background: transparent;
}

#categories .carousel-section {
    background: transparent;
}

#categories .categories-carousel {
    position: relative;
    background: transparent;
    padding: 0 15px;
}

#categories .item {
    background: transparent;
    height: auto;
    width: auto;
    margin: 10px;
    text-align: center;
}

.ripple {
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

.ripple:before {
    animation: ripple 2s ease-out infinite;
    border: solid 30px rgba(235, 90, 113, 0.2);
    border-radius: 50px;
    bottom: 0;
    box-sizing: border-box;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.ripple:after {
    animation: ripple 2s 1s ease-out infinite;
    border: solid 30px rgba(235, 90, 113, 0.1);
    border-radius: 50px;
    bottom: 0;
    box-sizing: border-box;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

@keyframes ripple {
    0% {
        opacity: 1;
    }

    100% {
        border-radius: 3em;
        opacity: 0;
        transform: scale(1.5);
    }
}

#categories .item .container {
    padding: 15px 0 0 0;
}

#categories .item h5 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark_blue);
    font-size: small;
}

#categories .item h5 a {
    color: var(--dark_blue);
}

#categories .img-container {
    position: relative;
    display: block;
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: 50% 50%;
    overflow: hidden;
    margin: auto;
    border-radius: 75px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

#categories .img-container::before {
    content: '';
    position: absolute;
    top: -75px;
    left: -75px;
    width: 250px;
    height: 250px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(100, 113, 181, 0.25);
    border: 5px solid rgba(255, 255, 255, 0.75);
    background: radial-gradient(rgba(255, 255, 255, 0.25) 25%, rgba(100, 113, 181, 0.25) 100%);
}

#categories .img-container::after {
    content: '';
    position: absolute;
    left: -75px;
    top: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(rgba(100, 113, 181, 0) 60%, rgba(100, 113, 181, 0.5) 60%);
    z-index: 100;
    transition: all 500ms cubic-bezier(0.55, 0.055, 0.675, 0.25);
}

#categories .img-container:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    box-shadow: 0 3px 3px var(--voilet);
    -webkit-box-shadow: 0 3px 3px var(--voilet);
    -moz-box-shadow: 0 3px 3px var(--voilet);
}

#categories .img-container:hover::after {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    transition: all 500ms cubic-bezier(0.55, 0.055, 0.675, 0.25);
}


/* Pulse Grow */

@keyframes pulsate-btn {
    0% {
        -webkit-transform: scale(0.25, 0.25);
        transform: scale(0.25, 0.25);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

#categories .owl-prev {
    position: absolute;
    left: 0px;
    top: 20%;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    text-align: center;
    opacity: 50%;
}

#categories .owl-next {
    position: absolute;
    right: 0px;
    top: 20%;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    text-align: center;
    opacity: 50%;
}

#categories .owl-prev:hover {
    opacity: 100%;
}

#categories .owl-next:hover {
    opacity: 100%;
}

@media (max-width: 992px) {
    #categories {
        padding-top: 250px;
    }
}

@media (max-width: 768px) {
    #categories {
        padding-top: 200px;
    }
}

@media (max-width: 480px) {
    #categories {
        padding-top: 0px;
    }
}

@media (max-width: 400px) {
    #categories .img-container {
        width: 100px;
        height: 100px;
        border-radius: 50px;
    }

    #categories .img-container::before {
        top: -25px;
        left: -25px;
        width: 150px;
        height: 150px;
    }

    #categories .img-container::after {
        left: -50px;
        top: -100px;
        width: 200px;
        height: 200px;
    }
}


/*--------------------------------------------------------------
# Flash Sale Section
--------------------------------------------------------------*/

#flash {
    position: relative;
    z-index: 2;
    margin-bottom: 5%;
}

#flash img {
    width: 100%;
    opacity: 50%;
    height: 150px;
    display: none;
}

#flash .title {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    padding: 50px 15px;
    z-index: 3;
}

#flash .title h1 {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 3;
}

@media (max-width: 767px) {
    #flash .title h1 {
        font-size: xx-large;
    }
}

#flash_sale {
    /*background: linear-gradient(to top right, #ffb1bf 0%, #699fcb 50%, #0d7b7c 100%);*/
    background-color: transparent;
    padding: 0 30px;
}

#flash_sale .container {
    padding: 15px;
    min-width: 100%;
    background: transparent;
    text-align: center;
}

#flash_sale .carousel-section {
    background: transparent;
}

#flash_sale .sale-carousel {
    position: relative;
    background: transparent;
    padding: 0 15px;
}

#flash_sale .item {
    background: transparent;
    height: auto;
    width: auto;
    margin: 10px;
}

#flash_sale .item .container {
    padding-bottom: 0;
}

.item h5 {
    margin-bottom: 5px;
    color: var(--dark_blue);
}

.carousel-section .item h5 {
    height: 44px;
    overflow: hidden;
}

#flash_sale ul {
    padding: 0;
    margin: 0;
}

#flash_sale ul li {
    display: inline-block;
    vertical-align: middle;
}

#flash_sale .img-container {
    width: auto;
    height: 35VH;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    overflow: hidden;
}

.new-price p {
    font-family: sans-serif;
    color: var(--primary_color);
    font-weight: bold;
    margin-right: 15px;
    margin-bottom: 0;
}

.old-price p {
    font-family: sans-serif;
    font-weight: bold;
    text-decoration-line: line-through;
    margin-bottom: 0;
    color: #717377;
}

.add-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    background: #699fcb;
    color: #fff;
    border: 2px solid #699fcb;
    cursor: pointer;
}

.add-btn:hover {
    background: #fff;
    color: #699fcb;
    border: 2px solid #699fcb;
}

.wish-btn {
    float: right;
    padding: 0 15px;
    transition: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    cursor: pointer;
    color: #55c3b6;
    font-size: x-large;
}

.wish-btn:hover {
    color: #ffb1bf;
}

#flash_sale .owl-prev {
    position: absolute;
    left: 0px;
    top: 16vh;
    font-size: 3rem;
    color: #c1c3c7;
    cursor: pointer;
    text-align: center;
}

#flash_sale .owl-next {
    position: absolute;
    right: 0px;
    top: 16vh;
    font-size: 3rem;
    color: #c1c3c7;
    cursor: pointer;
    text-align: center;
}

#flash_sale .owl-prev:hover {
    color: var(--primary_color);
}

#flash_sale .owl-next:hover {
    color: var(--primary_color);
}

.section-header {
    padding: 0 15px;
}

.categories-list {
    text-align: right;
}

.categories-list ul li {
    padding: 0 5px;
    cursor: pointer;
    font-weight: bold;
}

.categories-list ul li:hover {
    color: #55c3b6;
}

.offer-sticker {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    z-index: 999;
    background-color: var(--primary_color);
    color: #fff;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    padding: 14px 0;
}

.new-sticker {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    z-index: 999;
    background-color: var(--primary_color);
    color: #fff;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    padding: 14px 0;
}


/*--------------------------------------------------------------
# Trend Products Section
--------------------------------------------------------------*/

#trend {
    /*background: linear-gradient(to top right, #ffb1bf 0%, #699fcb 50%, #0d7b7c 100%);*/
    background-color: transparent;
    padding: 30px;
}

#trend h3 {
    text-transform: uppercase;
    color: var(--dark_blue);
    font-weight: bold;
}

#trend .container {
    padding: 15px;
    min-width: 100%;
    background-color: #fff;
}

#trend .carousel-section {
    background: transparent;
}

#trend .trend-carousel {
    position: relative;
    background-color: transparent;
    padding: 0 15px;
}

#trend .item {
    background-color: #fff;
    height: auto;
    width: auto;
    margin: 10px;
    text-align: center;
}

#trend .item .container {
    padding-bottom: 0;
}

#trend ul {
    padding: 0;
    margin: 0;
}

#trend ul li {
    display: inline-block;
    vertical-align: middle;
}

#trend .img-container {
    width: auto;
    height: 35vh;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    overflow: hidden;
}

#trend .owl-prev {
    position: absolute;
    left: 0px;
    top: 16vh;
    font-size: 3rem;
    color: #c1c3c7;
    cursor: pointer;
    text-align: center;
}

#trend .owl-next {
    position: absolute;
    right: 0px;
    top: 16vh;
    font-size: 3rem;
    color: #c1c3c7;
    cursor: pointer;
    text-align: center;
}

#trend .owl-prev:hover {
    color: var(--primary_color);
}

#trend .owl-next:hover {
    color: var(--primary_color);
}

#trend .product {
    overflow: hidden;
    position: relative;
}

#trend .product .details {
    height: 200px;
    background: rgba(25, 35, 70, 0.5);
    position: absolute;
    left: 0;
    bottom: -50vh;
    right: 0;
    text-align: center;
    padding: 15px;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#trend .product .details i {
    padding: 0 10px;
    font-size: x-large;
    color: #fff;
}

#trend .product .details i:hover {
    color: var(--primary_color);
    cursor: pointer;
}

#trend .product:hover .details {
    bottom: -150px;
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

#features {
    /*background: linear-gradient(to top right, #ffb1bf 0%, #699fcb 50%, #0d7b7c 100%);*/
    background-color: transparent;
    padding: 15px 30px;
}

#features .container {
    padding: 0;
    min-width: 100%;
}

#features .container img {
    width: 100%;
}


/*--------------------------------------------------------------
# Recently Viewed Section
--------------------------------------------------------------*/

#recently {
    /*background: linear-gradient(to top right, #ffb1bf 0%, #699fcb 50%, #0d7b7c 100%);*/
    background-color: transparent;
    padding: 30px;
}

#recently h3 {
    text-transform: uppercase;
    color: var(--dark_blue);
    font-weight: bold;
}

#recently .container {
    padding: 15px;
    min-width: 100%;
    background-color: #fff;
}

#recently .carousel-section {
    background: transparent;
}

#recently .recently-carousel {
    position: relative;
    background-color: transparent;
    padding: 0 15px;
}

#recently .item {
    background-color: #fff;
    height: auto;
    width: auto;
    margin: 10px;
    text-align: center;
}

#recently .item .container {
    padding-bottom: 0;
}

#recently ul {
    padding: 0;
    margin: 0;
}

#recently ul li {
    text-align: center;
    display: inline-flex;
    vertical-align: middle;
}

#recently .img-container {
    width: auto;
    height: 35VH;
    background-size: contain;
    background-position: 50% 50%;
    overflow: hidden;
    background-repeat: no-repeat;
    margin: auto;
}

#recently .owl-prev {
    position: absolute;
    left: 0px;
    top: 10vh;
    font-size: 3rem;
    color: #c1c3c7;
    cursor: pointer;
    text-align: center;
}

#recently .owl-next {
    position: absolute;
    right: 0px;
    top: 10vh;
    font-size: 3rem;
    color: #c1c3c7;
    cursor: pointer;
    text-align: center;
}

#recently .owl-prev:hover {
    color: var(--primary_color);
}

#recently .owl-next:hover {
    color: var(--primary_color);
}


/*--------------------------------------------------------------
# Brands
--------------------------------------------------------------*/

#brands {
    /*background: linear-gradient(to top right, #ffb1bf 0%, #699fcb 50%, #0d7b7c 100%);*/
    background-color: transparent;
    padding: 30px;
}

#brands .container {
    padding: 0;
    min-width: 100%;
}

#brands .container ul {
    padding: 0;
}

#brands .container ul li {
    display: inline-block;
    padding: 5px;
}

#brands .container ul li img {
    height: 50px;
    /*filter: grayscale();*/
}


/* footer Center */

#help {
    position: relative;
    z-index: 2;
}

#help img {
    width: 100%;
    opacity: 75%;
    height: 250px;
}

#help .title {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    padding: 80px 15px 15px 15px;
    z-index: 3;
}

#help .title h2 {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 3;
}

@media (max-width: 991px) {
    #help .title h2 {
        font-size: x-large;
    }
}

@media (max-width: 767px) {
    #help .title h2 {
        font-size: large;
    }
}

.help-btn {
    font-family: "Raleway", sans-serif;
    font-size: larger;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 60px;
    margin: 15px 0;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
}

.help-btn:hover {
    background: #fff;
    color: var(--voilet);
    border: 2px solid #fff;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    position: relative;
    padding: 0;
    background-color: #0e0e0e;
}

#footer .footer-top .container {
    min-width: 100%;
    padding: 60px 30px;
}

#footer .footer-top h4 {
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    margin: 0 0 30px 0;
}

@media (max-width: 767.5px) {
    #footer .footer-top h4 {
        margin: 30px 0;
    }
}

#footer .footer-top .social-links a {
    font-size: 1.7rem;
    display: inline-block;
    background: #f4d443;
    color: rgb(255 255 255);
    line-height: 1;
    padding: 10px 0;
    margin: 0 5px;
    border-radius: 50%;
    text-align: center;
    width: 45px;
    height: 45px;
    transition: 0.5s;
}

#footer .footer-top .social-links a:hover {
    background: #6c757d59;
    color: #fff;
}

#footer .footer-top .footer-links {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 5px;
    color: #e1e3e7;
}

#footer .footer-top .footer-links ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

#footer .footer-top .footer-links ul li:last-child {
    border-bottom: none;
}

#footer .footer-top .footer-links ul a {
    color: rgba(255, 255, 255, 0.5);
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--primary_color);
}

#footer .footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    bottom: 0;
    padding: 15px 0;
}

#footer .copyright {
    color: rgba(200, 200, 200, 1);
    text-align: center;
}

#footer .credits {
    text-align: right;
    color: #c1c3c7;
}


/* Counter Down */

.product-time-count {
    position: absolute;
    right: 20px;
    top: 75px;
    text-align: center;
    margin-bottom: 5px;
    z-index: 999;
}

.cdown {
    font-family: sans-serif;
    background: white;
    display: block;
    margin-bottom: 5px;
    padding: 5px;
    font-weight: 600;
}

.time-count {
    font-size: 16px;
    line-height: 1;
    color: var(--primary_color);
}

.cdown p {
    margin: 0;
    line-height: 1;
    font-size: 12px;
    color: var(--dark_blue);
    font-weight: 500;
}


/*--------------------------------------------------------------
# Product page
--------------------------------------------------------------*/

#product_page {
    position: relative;
    padding: 0 30px;
}

#product_page .container-flex {
    padding: 30px 60px;
    min-width: 100%;
    display: flex;
}

#product_page .container {
    padding: 30px 0;
    min-width: 100%;
}


/* Columns */

.left-column {
    width: 40%;
    position: relative;
}

.right-column {
    width: 60%;
    margin-left: 60px;
    position: relative;
}


/* Left Column */

.left-column img {
    width: 100%;
    position: relative;
    display: none;
    transition: all 0.3s ease;
}

.left-column img.active {
    display: block;
}


/* Right Column */


/* Product Description */

.product-description {
    border-bottom: 1px solid #e1e3e7;
    margin-bottom: 15px;
}

.product-description span a {
    font-size: 12px;
    color: var(--voilet);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
}

.product-description span a:hover {
    font-size: 12px;
    color: var(--primary_color);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
}

.product-description h1 {
    font-weight: normal;
    color: var(--dark_blue);
    letter-spacing: 0;
}

.product-description h3 {
    font-weight: bold;
    color: var(--dark_blue);
}

.product-description .img-container {
    width: 100%;
    text-align: center;
    padding: 15px;
}

.product-description img {
    max-width: 60%;
    text-align: center;
    margin-bottom: 15px;
}

.product-description p {
    font-size: 15px;
    font-weight: bold;
    color: #717377;
    line-height: 25px;
}


/* Product Configuration */

.product-color span,
.cable-config span {
    font-size: 15px;
    font-weight: bold;
    color: #717377;
    margin-bottom: 15px;
    display: inline-block;
}


/* Product Color */

.product-color {
    margin-bottom: 30px;
}

.color-choose div {
    display: inline-block;
}

.color-choose input[type="number"] {
    padding: 5px;
    border: 1px solid #e1e3e7;
    border-radius: 0;
}

.color-choose input[type="number"]:hover,
.color-choose input[type="number"]:focus {
    outline: none;
}

.color-choose input[type="radio"] {
    display: none;
}

.color-choose input[type="radio"]+label span {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
}

.color-choose input[type="radio"]+label span {
    border: 2px solid #FFFFFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
}

.color-choose input[type="radio"]#red+label span {
    background-color: #C91524;
}

.color-choose input[type="radio"]#blue+label span {
    background-color: #314780;
}

.color-choose input[type="radio"]#black+label span {
    background-color: #303030;
}

.color-choose input[type="radio"]#metal+label span {
    background-color: #44717C;
}

.color-choose input[type="radio"]#navy+label span {
    background-color: #677872;
}

.color-choose input[type="radio"]#gold+label span {
    background-color: #bba14f;
}

.color-choose input[type="radio"]#white+label span {
    background-color: #f0f0f0;
}

.color-choose input[type="radio"]:checked+label span {
    background-image: url(../img/icons/check-icn.svg);
    background-repeat: no-repeat;
    background-position: center;
}


/* Cable Configuration */

.cable-choose {
    margin-bottom: 15px;
}

.cable-choose button, .default_btn {
    border: 2px solid #f1f3f7;
    border-radius: 0;
    padding: 13px 20px;
    font-size: 14px;
    color: #5E6977;
    background-color: #fff;
    cursor: pointer;
    transition: all .5s;
    display: inline-block;
}

.cable-choose.not_clickable button {
    cursor: default;
    color: #b3afaf
}

.cable-choose button:hover,
.cable-choose button:active,
.cable-choose button:focus {
    border: 2px solid var(--primary_color);
    outline: none;
    color: var(--primary_color);
}

.cable-choose.not_clickable button:hover,
.cable-choose.not_clickable button:active,
.cable-choose.not_clickable button:focus {
    border: 2px solid #f1f3f7;
    border-radius: 0;
    color: #b3afaf
}

.cable-config {
    border-bottom: 1px solid #e1e3e7;
    margin-bottom: 15px;
}

.cable-config a {
    color: var(--voilet);
    text-decoration: none;
    font-size: 12px;
    position: relative;
    margin: 10px 0;
    display: inline-block;
}

/* .cable-config a:before {
    content: "?";
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 2px solid var(--voilet);
    display: inline-block;
    text-align: center;
    line-height: 16px;
    opacity: 0.5;
    margin-right: 5px;
} */


/* Product Price */

.product-price {
    display: flex;
    align-items: left;
    justify-content: space-between;
}

.product-price h2 {
    font-family: sans-serif;
    font-weight: bold;
    color: var(--primary_color);
    margin-right: 20px;
}

.product-price h4 {
    font-weight: bold;
    color: #FFF;
    padding: 5px 30px;
    background-color: var(--secondary_color);
    font-size: large;
    line-height: inherit;
    font-family: 'Circular-Loom';
}

.product-price .out-of-stock {
    font-weight: bold;
    color: #FFF;
    padding: 5px 30px;
    background-color: #f00;
    font-size: large;
    line-height: inherit;
}

.out-of-stock-alert {
    font-size: 12px;
}

.out-of-stock-alert .close {
    top: -5px;
    right: -5px;
    font-size: 27px;
}

.product-price span:not(#product_price_dynamic) {
    font-size: 15px;
    color: #717377;
    margin-left: 5px;
    margin-top: 2px;
    ;
}

.product-price span p {

    font-family: sans-serif;
    font-weight: bold;
    text-decoration-line: line-through;
    font-size: 25px;

}

.cart-btn {
    display: inline-block;
    height: 50px;
    text-align: center;
    background: var(--primary_color);
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 60px;
    transition: all 0.5s;
    border: 1px solid var(--primary_color);
    margin: 0;
}

.cart-btn:hover {
    background-image: linear-gradient(to top left, var(--primary_color), var(--secondary_color));
    color: #FFFFFF;
    transition: all 0.5s;
}

.cart-btn:focus {
    background: transparent;
    color: var(--primary_color);
}

.favorite-btn {
    display: inline-block;
    background: transparent;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary_color);
    text-decoration: none;
    padding: 10px;
    transition: all .5s;
    border: 1px solid var(--primary_color);
    margin: 0 5px;
}

.favorite-btn:hover,
.favorite-btn:focus {
    background: var(--primary_color);
    color: #FFFFFF;
    transition: 0.5s;
}
.custom_shipping_cnt{
    display: inline;
    margin-left: 15px;
}
.delivery,.product_related_categories {
    padding: 15px 0;
}

.delivery a {
    font-size: large;
    color: var(--dark_blue);
}

.delivery i {
    padding-right: 5px;
    color: var(--primary_color);
}

.delivery a:hover {
    color: var(--primary_color)
}

.share-item {
    margin: 15px 0;
}

.share-item a {
    font-size: 20px;
    display: inline-block;
    background: var(--voilet);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    padding: 10px 0;
    margin: 0 5px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.5s;
    opacity: 0.25;
}

.share-item a:hover {
    background-color: var(--primary_color);
    opacity: 1;
}


/* zoom-slider */

.positive-gallery-slider {
    width: 100%;
    display: flex;
}

.positive-gallery-slider .side-img {
    flex-basis: 10%;
    display: flex;
    flex-direction: column;
    max-height: 500px;
    overflow-y: auto;
}

.positive-gallery-slider .side-img img.small-preview {
    margin: 5px 0px;
    width: 97%;
    cursor: pointer;
}

.zoom-image {
    flex: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 15px;
    height: 35vw;
}


/*
* Allow only vertical resizing of textareas.
*/

.product-details {
    padding: 30px 0;
    color: var(--dark_blue);
}

.product-details .main_p_element {
    color: var(--dark_blue);
    white-space: pre-line;
    padding-left: 15px;
}

.product-details .nav-tabs {
    border-bottom: 1px solid #e1e3e7;
}

.product-details .nav-tabs .nav-link {
    color: var(--dark_blue);
    font-weight: bold;
    font-size: large;
}

.product-details .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: var(--primary_color);
    background-color: transparent;
    border-color: #e1e3e7 #e1e3e7 #F4F8FC;
}

.product-details textarea {
    resize: vertical;
    width: 100%;
    border: none;
    background-color: #F4F8FC;
}

.product-details textarea:active,
.product-details textarea:focus {
    box-shadow: none;
    outline: none
}

.product-details fieldset,
label {
    border: 0;
    margin: 0;
    padding: 0;
}

.rating {
    border: none;
    text-align: right;
}

.rating span {
    color: var(--primary_color);
    margin-right: 10px;
    font-weight: bold;
}

.rating>input {
    display: none;
}

.rating>label:before {
    margin: 0 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating>.half:before {
    content: "\f089";
    position: absolute;
}

.rating>label {
    color: #c1c3c7;
    float: right;
}

.rating>input:checked~label,

/* show gold star when clicked */

.rating:not(:checked)>label:hover,

/* hover current star */

.rating:not(:checked)>label:hover~label {
    color: var(--primary_color);
}


/* hover previous stars in list */

.rating>input:checked+label:hover,

/* hover current star when changing rating */

.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,

/* lighten current selection */

.rating>input:checked~label:hover~label {
    color: var(--primary_color);
}

.sendreview {
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    display: block;
    padding: 10px 70px;
    transition: 0.5s;
    line-height: 1;
    background: var(--primary_color);
    color: #FFFFFF;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    border-radius: 50px;
    float: right;
    border: none;
}

.sendreview:hover {
    background-image: linear-gradient(to top left, var(--primary_color), var(--secondary_color));
    color: #fff;
}

/* FAQ */
.faq_answer{
    white-space: pre-line;
}
.faq-answer-container{
    margin-bottom: 30px;
    li{
    border: unset !important;
    }
    p{
        margin:0px !important;
    }
    a:not(.read-more){
            color: #007bff !important ;
            font-size: 16px !important;
        display: inline-block !important;
    }
    a.read-more{
        font-size: 16px !important;
        display: inline-block !important;
        margin-top: 10px !important;
    }
}
/* Responsive */

@media (max-width: 940px) {
    #product_page .container-flex {
        flex-direction: column;
        margin-top: 60px;
        padding: 0;
    }

    .left-column,
    .right-column {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .left-column img {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .zoom-image {
        height: 80vw;
    }
}

@media (max-width: 768px) {
    .product-price {
        flex-direction: column-reverse;
    }
}


/*--------------------------------------------------------------
# Modal Log In
--------------------------------------------------------------*/

.custum-modal {
    text-align: left;
    background-color: var(--primary-color);
    /*background-image: linear-gradient(to right, #090621, #6E79F5);*/
}

.custum-modal img {
    width: 100px;
}

.custum-modal .title {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    opacity: 1;
    font-weight: bold;
    font-size: larger;
}

.modal {
    overflow: auto;
}

.modal-header,
.modal-body,
.modal-footer {
    border: none;
    padding: 15px 30px;
    background-color: black;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body .or-spacing {
    text-align: center;
    position: relative;
    margin: 15px 0;
    line-height: 0;
}

.modal-body .or-spacing p {
    line-height: 1;
    z-index: 2;
    position: relative;
    display: inline-block;
    background-color: #F4F8FC;
    padding: 0 10px 0 10px;
    margin-bottom: 0;
}

.modal-body .or-spacing::after {
    content: "";
    width: 100%;
    background-color: transparent;
    display: block;
    height: 1px;
    border-top: 1px solid #e1e3e7;
    position: absolute;
    top: 50%;
    margin-top: 0;
    z-index: 1;
}

.modal-header .close {
    padding: 15px;
    margin: -15px -15px -15px auto;
    color: #fff !important;
    text-shadow: 0 0 0 #fff !important;
}

.modal-header .close:hover {
    color: var(--primary_color) !important;
    outline: none;
}

.modal-header .close:focus {
    outline: none;
}

.modal-body {
    padding-top: 15px;
    border-top: 1px solid #e1e3e7;
    background-color: #F4F8FC;
}

.custum-modal input.defStyle,
select.defStyle {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #e1e3e7;
}

.custum-modal input.defStyle:hover,
.custum-modal input.defStyle:focus {
    outline: none;
}

.custum-modal label {
    color: var(--dark_blue);
    text-align: left;
    width: 100%;
    padding: 5px 0;
}

.modal-link a {
    color: var(--voilet);
}

.modal-link a:hover {
    color: var(--primary_color);
    text-decoration: underline;
}

.custum-modal input.submitBtn {
    /*background-image: linear-gradient(to top right, var(--primary_color), var(--secondary_color));*/
    background-color: black;
    color: #fff;
    width: 100%;
    border-radius: 20px;
    padding: 5px;
    border: 1px solid black;
    margin: 15px 0 5px 0;
}

.custum-modal input.submitBtn:hover {
    background-color:  var(--primary_color);
    border: 1px solid  var(--primary_color);
    outline: none;
    transition: 0.5s;
}

.custum-modal .costum-btn {
    background-color: var(--secondary_color);
    color: #fff;
    width: 100%;
    border-radius: 20px;
    padding: 5px;
    border: 1px solid var(--secondary_color);
    margin-bottom: 15px;
}

.custum-modal .costum-btn:hover {
    background-color: var(--primary_color);
    border: 1px solid var(--primary_color);
    transition: 0.5s;
}

.custum-modal .costum-btn:focus {
    background-color: transparent;
    border: 1px solid var(--primary_color);
    color: var(--dark_blue);
}


#location {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border-radius: 0;
    border: 1px solid #e1e3e7;
}

#location:focus {
    outline: none;
}

.bottomtext {
    padding: 0;
}

.bottomtext p {
    color: var(--dark_blue);
    margin-bottom: 0;
}

.bottomtext a {
    color: #fff;
}

.bottomtext a:hover {
    color: var(--primary_color);
    text-decoration: underline;
}

.servermsg {
    background: #ffffff;
    position: fixed;
    z-index: 3;
    top: 25%;
    left: 35%;
    right: 35%;
    width: 30%;
    text-align: center;
    height: auto;
    padding: 25px;
    border-radius: 20px;
    border: solid 1px #e1e3e7;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: auto;
        margin: 30px auto;
        margin-top: 70px;
    }
}


/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/

#text_page {
    padding: 60px 0;
}

#text_page #faq-list {
    padding: 0;
    list-style: none;
}

#text_page #faq-list li {
    border-bottom: 1px solid #e1e3e7;
}

#text_page #faq-list a {
    padding: 15px 0;
    display: block;
    position: relative;
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    line-height: 25px;
    font-weight: 600;
    padding-right: 20px;
}

#text_page #faq-list a.collapse {
    color: var(--primary_color);
}

#text_page #faq-list a:hover {
    color: var(--primary_color);
}

#text_page #faq-list a:focus {
    color: var(--primary_color);
}

#text_page #faq-list a.collapsed {
    color: var(--dark_blue);
}

#text_page #faq-list a.collapsed:hover {
    color: var(--primary_color);
}

#text_page #faq-list i {
    font-size: 25px;
    position: absolute;
    right: 0;
    top: 15px;
}

#faq #faq-list p {
    margin-bottom: 20px;
    color: var(--dark_blue);
    text-align: justify;
}

#text_page #faq-list a.collapsed i::before {
    content: "\f055" !important;
}


/*--------------------------------------------------------------
	Sections Header
--------------------------------------------------------------*/

.section-header {
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-header::before {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 5px;
    background: var(--primary_color);
    bottom: 0;
    left: calc(50% - 30px);
}

.section-header h2 {
    font-weight: bold;
    text-align: center;
    color: var(--dark_blue);
    margin-bottom: 20px;
}

.section-header h3 {
    font-weight: lighter;
    text-transform: uppercase;
    text-align: center;
    color: #717377;
    margin-bottom: 10px;
}


/*--------------------------------------------------------------
# Help Section
--------------------------------------------------------------*/

#text_page .contact-info {
    margin-bottom: 20px;
    text-align: center;
}

#text_page .contact-info i {
    font-size: 50px;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary_color);
}

#text_page .contact-info address,
#text_page .contact-info p {
    margin-bottom: 0;
    color: var(--dark_blue);
    font-family: sans-serif;
}

#text_page .contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--dark_blue);
}

#text_page .contact-info a {
    color: var(--voilet);
}

#text_page .contact-info a:hover {
    color: var(--primary_color);
}

#text_page .contact-address,
#text_page .contact-phone,
#text_page .contact-email {
    margin-bottom: 20px;
}

#text_page .form #sendmessage {
    color: var(--nice_green);
    border: 1px solid var(--nice_green);
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#text_page .form #errormessage {
    color: var(--primary_color);
    display: none;
    border: 1px solid var(--primary_color);
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#text_page .form #sendmessage.show,
#text_page .form #errormessage.show,
#text_page .form .show {
    display: block;
}

#text_page .form .validation {
    color: var(--primary_color);
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#text_page .form input,
#text_page .form textarea,
#text_page .form select {
    padding: 10px 15px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
    border: 1px solid #e1e3e7;
    height: 40px;
}

#text_page .form textarea {
    height: auto;
}

#text_page .form button[type="submit"] {
    background: var(--primary_color);
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid var(--primary_color);
    outline: none;
    font-weight: bold;
}

#text_page .form button[type="submit"]:hover {
    background-image: linear-gradient(to top left, var(--primary_color), var(--secondary_color));
    transition: 0.5s;
}

#text_page .form button[type="submit"]:focus {
    outline: none;
    background: transparent;
    color: var(--primary_color);
}

@media (min-width: 768px) {
    #text_page .contact-phone {
        border-left: 1px solid #e1e3e7;
        border-right: 1px solid #e1e3e7;
    }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#text_page .about-paragraph h2 {
    color: var(--primary_color);
}

#text_page .about-paragraph p {
    color: var(--dark_blue);
    text-align: justify;
    white-space: pre-line;
}


/*--------------------------------------------------------------
# Search Page
--------------------------------------------------------------*/

#categories_list {
    background: transparent;
    padding: 0;
    list-style: none;
    position: sticky;
    top: 0;
}

#categories_list a {
    position: relative;
    display: block;
    padding: 5px 0;
    font-size: 15px;
    font-weight: bold;
    color: var(--dark_blue);
}

#categories_list li div a {
    position: relative;
    display: block;
    padding: 0 0 0 25px;
    font-size: 15px;
    font-weight: normal;
    color: var(--dark_blue);
}

#categories_list a:hover {
    color: var(--primary_color);
}

#categories_list i {
    font-size: 10px;
    display: inline-block;
    padding-right: 15px;
}

#categories_list a.collapsed i::before {
    content: "\f078" !important;
}


/* Search result */

.search_product {
    margin: 15px 0;
    border: 2px solid #fff;
    .product_list_thumbnail{
        width: 100%;;
    }
}

.search_product .no-padding {
    padding: 0;
}

.search_product .img-container {
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: 50% 50%;
    overflow: hidden;
    padding: 0;
}

.search_product .info-container {
    padding: 15px;
    font-family: sans-serif;
}

.search_product .info-container a {
    color: var(--dark_blue);
    font-size: x-large;
    font-weight: 500;
}

.search_product .info-container a:hover,
.search_product .info-container a:focus {
    color: var(--primary_color);
}

.search_product .info-container p {
    margin-bottom: 5px;
}

.search_product .info-container ul {
    padding: 0;
}

.search_product .info-container ul li {
    display: inline-block;
}

.new-price p {
    font-size: x-large;
    font-family: sans-serif;
    color: var(--primary_color);
    font-weight: bold;
    margin-bottom: 0;
}

.old-price p {
    font-family: sans-serif;
    font-weight: bold;
    text-decoration-line: line-through;
    margin-bottom: 0;
}


/* rating */

.rating-input>label,
.rating-score>.rating-score-item {
    display: inline-block;
}

.rating-input>label:after,
.rating-score>.rating-score-item:after {
    font-family: "FontAwesome";
    font-size: 1.5em;
    color: var(--secondary_color);
}

.rating-input:hover>input+label:hover:after,
.rating-input:hover>input+label:hover~input+label:after,
.rating-input>input:checked~label:after,
.rating-score[data-rating="4.5"]>.rating-score-item:nth-child(-n+4):after,
.rating-score[data-rating="3.5"]>.rating-score-item:nth-child(-n+3):after,
.rating-score[data-rating="2.5"]>.rating-score-item:nth-child(-n+2):after,
.rating-score[data-rating="1.5"]>.rating-score-item:nth-child(-n+1):after,
.rating-score[data-rating="0.5"]>.rating-score-item:nth-child(-n+0):after,
.rating-score[data-rating="5"]>.rating-score-item:nth-child(-n+5):after,
.rating-score[data-rating="4"]>.rating-score-item:nth-child(-n+4):after,
.rating-score[data-rating="3"]>.rating-score-item:nth-child(-n+3):after,
.rating-score[data-rating="2"]>.rating-score-item:nth-child(-n+2):after,
.rating-score[data-rating="1"]>.rating-score-item:nth-child(-n+1):after {
    content: "\f005";
}

.rating-score[data-rating="4.5"]>.rating-score-item:nth-child(5):after,
.rating-score[data-rating="3.5"]>.rating-score-item:nth-child(4):after,
.rating-score[data-rating="2.5"]>.rating-score-item:nth-child(3):after,
.rating-score[data-rating="1.5"]>.rating-score-item:nth-child(2):after,
.rating-score[data-rating="0.5"]>.rating-score-item:nth-child(1):after {
    content: "\f123";
}

.rating-input:hover>input+label:after,
.rating-input>label:after,
.rating-score>.rating-score-item:after {
    content: "\f006";
}

.rating-score {
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.rating-input {
    border: none;
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.rating-input>input {
    display: none;
}


/* Sort */

.search-sort {
    padding: 0 15px;
    font-family: sans-serif;
}

.search-sort p {
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 15px;
    color: var(--voilet);
}

.search-sort button,
select.search-sort {
    margin: 0 5px;
    padding: 5px 15px;
    width: 200px;
    border-radius: 50px;
    border: 1px solid var(--voilet);
    background: transparent;
    color: var(--voilet);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.search-sort button:hover,
select.search-sort:hover {
    border: 1px solid var(--voilet);
    background: var(--voilet);
    color: #fff;
}

.search-sort button:focus {
    outline: none;
}

.search-sort .sort.asc,
.search-sort .sort.desc {
    background: var(--primary_color);
    border: 1px solid var(--primary_color);
    color: #fff;
}

.search-sort .sort.asc::after {
    content: " Low to High \002B06";
}

.search-sort .sort.desc::after {
    content: " High to Low \002B07";
}


/* Pagination */

.nav-pagination {
    display: flex;
    align-items: center;
    font-family: sans-serif;
    margin-top: 15px;
}

.nav-pagination ul {
    margin: 0;
}

.nav-pagination [class^="btn"] {
    background: transparent;
    text-align: center;
    cursor: pointer;
}

.nav-pagination [class^="btn"] i {
    display: inline-block;
    font-size: 15px;
    padding: 15px;
    color: var(--voilet);
}

.nav-pagination [class^="btn"] i:hover {
    display: inline-block;
    font-size: 15px;
    color: var(--primary_color);
}

.pagination li {
    display: inline-block;
    text-align: center;
    width: 45px;
    height: 45px;
    padding: 10px;
}

.pagination li:hover {
    background: #fff;
}

.pagination li a {
    font-size: 15px;
    color: var(--voilet);
    font-weight: bold;
}

.pagination .active a {
    color: var(--primary_color);
}


/* Cart */

#cart_table {
    font-family: sans-serif;
    color: var(--dark_blue);
}

#cart_table .table-hover tbody tr:hover {
    background-color: #fff;
}

#cart_table td {
    vertical-align: middle;
}

#cart_table td img {
    max-width: 100px;
}

#cart_table td i {
    font-size: 30px;
    color: var(--primary_color);
    cursor: pointer;
}

#cart_table td i:hover {
    color: var(--secondary_color);
}

#cart_table td input[type="number"],
#cart_table td input[type="text"] {
    padding: 5px;
    border: 1px solid #e1e3e7;
    border-radius: 0;
    max-width: 100px;
}

#cart_table td input[type="number"]:focus,
#cart_table td input[type="text"]:focus {
    outline: none;
}

#cart_table td input[type="number"]:disabled,
#cart_table td input[type="text"]:disabled {
    border: none;
    background: transparent;
}


/* Cart - favorite */

#cart_page {
    position: relative;
    padding: 60px 0;
}

#cart_page h4 {
    font-weight: bold;
    color: var(--dark_blue);
    margin-bottom: 0;
}

#cart_page h5 {
    font-weight: bold;
    color: var(--primary_color);
    margin-bottom: 0;
    padding: 5px 0;
    margin: 5px 15px;
    line-height: 1.5;
    font-size: large;
}

#cart_page p {
    margin-bottom: 0;
    padding: 15px 0;
    color: var(--dark_blue);
}

.cart_table input[type="text"] {
    margin: 5px 0;
    padding: 5px;
    border: 1px solid #e1e3e7;
    border-radius: 0;
    max-width: 100px;
    font-family: sans-serif;
    font-size: larger;
    font-weight: bold;
    color: var(--dark_blue);
}

.cart_table input[type="text"]:focus {
    outline: none;
}

.cart_table input[type="text"]:disabled {
    background: transparent;
    border: none;
}

.cart_table button[type="submit"] {
    background: var(--primary_color);
    padding: 10px 40px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid var(--primary_color);
    outline: none;
    font-weight: bold;
    text-transform: uppercase;
}

.cart_table button[type="submit"]:hover {
    background-image: linear-gradient(to top left, var(--primary_color), var(--secondary_color));
    transition: 0.5s;
}

.cart_table button[type="submit"]:focus {
    outline: none;
    background: transparent;
    color: var(--primary_color);
}

#favorite_page {
    position: relative;
    padding: 30px 0;
}

.remove-btn {
    width: 100%;
    text-align: center;
    background: transparent;
    font-size: large;
    font-weight: normal;
    color: var(--primary_color);
    text-decoration: none;
    padding: 5px 30px;
    transition: all 0.5s;
    border: 2px solid var(--primary_color);
    border-radius: 50px;
    margin: 0;
    margin-bottom: 15px;
}

.remove-btn:hover {
    background-color: var(--primary_color);
    color: #FFFFFF;
    transition: all 0.5s;
}

.remove-btn:focus {
    background: transparent;
    color: var(--primary_color);
    outline: none;
}

#product_card {
    padding: 15px 15px;
    font-family: sans-serif;
    margin: 6px;
    background-color: #fff;
}

#product_card ul {
    list-style: none;
    padding: 0;
}

#product_card a {
    color: var(--dark_blue);
    /* font-size: larger; */
}

#product_card a:hover {
    color: var(--primary_color);
}

#product_card .img-container {
    width: 100%;
    height: 22vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    overflow: hidden;
    padding: 0;
    margin-bottom: 15px;
}


/* seller */

.form-group label {
    padding: 5px 0;
}


/* checkout */

.back-btn {
    text-align: center;
    background: transparent;
    font-size: inherit;
    font-weight: bold;
    color: var(--primary_color);
    text-decoration: none;
    padding: 10px 30px;
    transition: all 0.5s;
    border: 2px solid var(--primary_color);
    border-radius: 50px;
    margin: 0;
    margin-bottom: 15px;
}

.back-btn:hover {
    background-color: var(--primary_color);
    color: #FFFFFF;
    transition: all 0.5s;
}

.back-btn:focus {
    background: transparent;
    color: var(--primary_color);
}

#checkout {
    color: var(--dark_blue);
}

#checkout h3 {
    color: var(--dark_blue);
    font-weight: 500;
}

#checkout h4 {
    color: var(--dark_blue);
    font-weight: 500;
    font-family: sans-serif;
    font-size: 1.2rem;
}

#checkout p {
    margin-bottom: 5px;
    font-family: sans-serif;
    font-size: small;
}

#checkout strong {
    color: var(--primary_color);
    padding-left: 5px;
}

#checkout h5 {
    margin-bottom: 5px;
    font-family: sans-serif;
    font-size: medium;
    color: var(--dark_blue);
}


/*--------------------------------------------------------------
# Order Page
--------------------------------------------------------------*/

#order_list {
    background: #fff;
    padding: 0;
    list-style: none;
    position: sticky;
    top: 0;
}

#order_list a {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 15px 15px 15px 25px;
    color: var(--dark_blue);
    border-bottom: 1px solid #dee2e6;
    border-left: 5px solid #fff;
}

#order_list .active {
    border-left: 5px solid var(--primary_color);
}

#order_list a:hover {
    background-color: #F4F8FC;
    border-left: 5px solid var(--primary_color);
}

#order_items {
    background-color: #fff;
    margin-bottom: 30px;
}

#order_items h4 {
    color: var(--dark_blue);
    margin-top: 15px;
}

#order_items h3 {
    font-family: sans-serif;
    font-weight: bold;
    color: var(--dark_blue);
    padding: 15px;
}

#order_items a {
    font-weight: bold;
    background-color: #F4F8FC;
    color: var(--dark_blue);
    padding: 15px 30px;
    margin: 0 15px;
}

#order_items a:hover {
    background-color: var(--dark_blue);
    color: #fff;
}

#order_statue {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

#order_statue h5 {
    color: var(--primary_color);
    padding: 5px 0;
}

#order_statue h5 span {
    color: var(--dark_blue);
}

#order_items #order_statue a {
    padding: 5px 30px;
    background-color: var(--secondary_color);
    color: #fff;
    font-weight: bold;
    margin: 0;
}

.order_statue_info {
    padding: 0 15px 15px 15px;
}

.order_statue_info h5 {
    color: var(--dark_blue);
    font-weight: bold;
}

.order_statue_info h5 span {
    font-weight: normal;
}

/* ----------------------- */
.shadow-textarea textarea.form-control::placeholder {
    font-weight: 300;
}

.shadow-textarea textarea.form-control {
    padding-left: 0.8rem;
    border: 1px solid #eee;
    border-radius: 5px;
}

/* server messages */
.serverMSG_cnt {
    width: 50%;
    position: relative;
    display: revert;
    align-items: center;
    z-index: 5;
    padding: 39px;
    margin: auto;
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
    align-content: stretch;
    border-radius: 10px;
}

.serverMSG_cnt p {
    color: #090621
}

.serverMSG.alert-success {
    color: var(--primary_color);
    background-color: #ffffff;
    border-color: white;
}

.serverMSG.alert-success p {
    color: black;
    font-size: 16px;
}

.serverMSG.alert-success .close {
    color: var(--primary_color);
    opacity: 1;
}

.msg-contaier {
    position: fixed;
    z-index: 4;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0 0 0 / 27%);
    padding-top: 150px;
    left: 0;
    top: 0;
}

.serverMSG-footer {
    padding: 2px 16px;
    background-color: #c7171f;
    color: white;
}

.serverMSG-header {
    padding: 2px 16px;
    background-color: #c7171f;
    color: white;

}

.alert-dismissible .close-btn {
    position: absolute;
    top: 0px;
    right: -70px;
    font-size: 32px;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.favoriate_alignment {
    justify-content: center;
}

.old-price-inline {
    font-family: sans-serif;
    font-weight: bold;
    text-decoration-line: line-through;
    margin-bottom: 0;
    color: gray;
    font-size: 20px;
}

.close-msg {
    position: absolute;
    top: 9px;
    right: 26px;
    color: red;
    font-size: 32px;
}

.trylogin-btn {
    font-family: "Raleway", sans-serif;
    font-size: larger;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 60px;
    margin: 15px 0;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;

    border: 2px solid #fff;
    cursor: pointer;
    color: #ffffff;
    font-weight: 600;
    background-color: #565dc2
}

.trylogin-btn:hover {
    background: rgb(135 128 128 / 43%);
    color: rgb(255, 255, 255);
    border: 2px solid rgba(135, 128, 128, 0.007);
}

/* */

#logIn {
    position: relative;
}

#logIn .cover {
    width: 100%;
    height: 100vh;
    /* background: url("../img/cover.jpg"); */
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    overflow: hidden;
    background-color: black;
}

#logIn .container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 0;
}

#logIn #logo img {
    padding: 0;
    margin: 100px 0 0 0;
    max-width: 400px;
}

#logIn .logInWindow {
    margin: 50px auto 0 auto;
    width: 400px;
    height: auto;
    padding: 0;
}

#logIn .input-box {
    width: 100%;
    display: inline-block;
    text-align: center;
    background-color: #fff;
    border: 1pt solid #f1f3f7;
    border-radius: 50px;
    padding: 5px 0;
    margin: 15px 0;
}

#logIn .input-box i {
    color: var(--primary_color);
    font-size: 15pt;
    padding: 5px;
}

#logIn .input-box input {
    width: 86%;
    padding: 0;
    margin: auto;
    display: inline-block;
    border: none;
    background-color: transparent;
    font-size: 15pt;
    resize: none;
    color: #717377;
    vertical-align: middle;
}

#logIn input[type=text]:focus,
#logIn .input-box input:focus {
    outline: none;
}

#logIn .btn-default {
    width: 100%;
    text-align: center;
    background: var(--primary_color);
    font-size: large;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    padding: 5px 30px;
    transition: all 0.5s;
    border: 2px solid var(--primary_color);
    border-radius: 50px;
    margin: 15px 0;
    margin-bottom: 15px;
}

#logIn .btn-default:hover {
    background-color: transparent;
    color: var(--primary_color);
    transition: all 0.5s;
}

#logIn p {
    color: var(--white);
    display: inline-block;
}

#logIn a:hover {
    text-decoration: underline;
}

#logIn .vendor_form_error {
    font-size: 17px;
    background: #f3f4f700;
    padding: 5px;
    color: var(--danger);
}
#logIn .vendor_form_success {
    font-size: 17px;
    background: #f3f4f700;
    padding: 5px;
}


/*--------------------------------------------------------------
 Item page, popup button
--------------------------------------------------------------*/

.lightbox_btn {
    position: absolute;
    top: 0px;
    right: 15px;
    width: 30px;
    height: 30px;
    font-size: 30px;
    margin: 5px;
    line-height: 1;
    background-color: #F4F8FC;
    text-align: center;
    color: #c1c3c7;
}

.lightbox_btn:hover {
    color: var(--primary_color);
}

.lightbox_btn:focus {
    color: #c1c3c7;
}


/*--------------------------------------------------------------
# Modal Log In
--------------------------------------------------------------*/

#lightbox .modal-dialog {
    max-width: 100% !important;
    max-height: 100vh !important;
    margin: 0 auto !important;
    text-align: center;
}

#lightbox .modal-content {
    border: none;
    background-color: transparent;
}

#lightbox .close {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1;
    font-size: 45px;
    font-weight: bold;
    padding: 15px 30px;
    color: #fff !important;
    text-shadow: 0 0 0 #fff !important;
    opacity: 1;
    z-index: 100;
}

#lightbox .close:not(:disabled):not(.disabled):hover {
    color: var(--primary_color) !important;
    outline: none;
    opacity: 1;
}

#lightbox .close:not(:disabled):not(.disabled):focus {
    outline: none;
    opacity: 1;
}

@media (min-width: 576px) {
    #lightbox .modal-dialog {
        max-width: 100%;
        margin: 0 auto !important;
    }
    .modal-dialog{
        max-width: 600px;
    }
}

#lightbox .modal-body {
    border-top: none;
    background-color: transparent;
    padding: 15px 0 0 0;
}

#lightbox .owl-carousel .owl-item img {
    width: auto;
    height: 95vh;
    margin: auto;
}

#lightbox .owl-nav span {
    font-size: 45px;
    line-height: 1;
    padding: 15px 30px;
}

#lightbox .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    top: 50%;
    cursor: pointer;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
}

#lightbox .owl-next {
    position: absolute;
    right: 0;
    top: 50%;
    cursor: pointer;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
}

#lightbox .owl-prev:hover {
    color: rgba(255, 255, 255, 1);
}

#lightbox .owl-next:hover {
    color: rgba(255, 255, 255, 1);
}

.modal-open .modal {
    padding-right: 0 !important;
    background-color: rgba(0, 0, 0, 0.5);
}


/* Fedex popup readonly section */
.custum-modal input.defStyle:read-only {
    background-color: #f3f5f8;
}

.custome_invalid_input {
    border-color: #dc3545 !important;
}
.fedex_loader{
    border: solid 1px grey;
    margin-top: 5px;
    padding: 5px;
    display: none;
}
.fedex_submit{
    display: none;
}
.search_tags{
    border: 2px solid #f1f3f7;
    border-radius: 0;
    padding: 13px 20px;
    font-size: 14px;
    color: #5E6977;
    background-color: #fff;
    cursor: pointer;
    transition: all .5s;
    display: inline-block;
}
.search_tags:hover{
    border: 2px solid var(--primary_color);
    outline: none;
    color: var(--primary_color);
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p,#why_us .head_title p{
    color: #fdbe33;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}
/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 150px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: #ffffff;
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #fdbe33;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #fdbe33;
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #ffffff;
}

/* Why us */
#why_us {
    background: #f2f7fa none repeat scroll 0 0;
    padding-bottom: 50px;
    line-height: 18px;
}
#why_us h2 {
    /* margin: 70px 0 20px; */
    font-weight: 700;
    color: var(--dark_blue);
}
.why_us_item{ padding-top: 55px;}
#why_us .fa{
    border-radius: 100%;
    box-shadow: 0 0 0 10px #ffcb0f, 0 0 0 20px #fadb64, 0 0 0 30px #f7e59c;
    padding: 38px;
    font-size:45px;
}
.why_us_item > h4 {
    font-size: 15px;
    margin: 60px 0 20px;
}
#why_us::before {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 5px;
    background: var(--primary_color);
    bottom: 0;
    left: calc(50% - 30px);
}
#why_us .head_title .desc{
color: var(--dark_blue);
font-weight: 200;
}
 


.owl-carousel .carousel-caption p {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.owl-carousel .carousel-caption h1 {
    color: #020202;
    font-size: 54px;
    font-weight: 500;
    margin-bottom: 35px;
}

.owl-carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.owl-carousel .carousel-caption .btn:hover {
    color: #ffffff;
    background: black;
    border-color: black;
}

@media (max-width: 767.98px) {
    .owl-carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .owl-carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


.carousel-caption {
    position: absolute;
    left: 10% !important;
    top: 33%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000;
    text-align: center;
    max-width: 600px;
}