/* line 3, C:/laragon/www/wepick/public/web_files/sass/base/_base.scss */
* {
    box-sizing: border-box;
}

/* line 7, C:/laragon/www/wepick/public/web_files/sass/base/_base.scss */
html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* line 12, C:/laragon/www/wepick/public/web_files/sass/base/_base.scss */
*,
body {
    padding: 0;
    margin: 0;
}

/* line 18, C:/laragon/www/wepick/public/web_files/sass/base/_base.scss */
body {
    overflow-x: hidden;
    background-color: #f7f7f7;
}

/* line 23, C:/laragon/www/wepick/public/web_files/sass/base/_base.scss */
body::-webkit-scrollbar,
.mainbg::-webkit-scrollbar {
    background-color: #f7f7f7;
    width: 10px;
}

/* line 29, C:/laragon/www/wepick/public/web_files/sass/base/_base.scss */
body::-webkit-scrollbar-thumb,
.mainbg::-webkit-scrollbar-thumb {
    background: #f9b81a;
}

/* line 34, C:/laragon/www/wepick/public/web_files/sass/base/_base.scss */
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* line 40, C:/laragon/www/wepick/public/web_files/sass/base/_base.scss */
ul li {
    list-style-type: none;
}

/* line 44, C:/laragon/www/wepick/public/web_files/sass/base/_base.scss */
a {
    text-decoration: none;
}

input[type="number"] {
    -moz-appearance: textfield;
    /* Firefox */
    -webkit-appearance: none;
    /* Chrome, Safari, Edge */
    appearance: none;
    /* Standard */
    margin: 0;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    /* Chrome, Safari, Edge */
    margin: 0;
}

/* line 48, C:/laragon/www/wepick/public/web_files/sass/base/_base.scss */
.row {
    margin: 0;
}

@font-face {
    font-family: "SAR" !important;
    src: url("../assets/fonts/icomoon.woff") format("woff");
}

.sar-icon {
    width: 12px;
    color: inherit;
    vertical-align: baseline;
}

.sar-icon-sm {
    width: 10px;
    color: inherit;
    vertical-align: baseline;
}

.sar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;

}

[dir="rtl"] .sar-wrapper {
    flex-direction: row;
}

[dir="ltr"] .sar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}



@font-face {
    font-family: "Gotham";
    src: url("../assets/fonts/Gotham-Light.otf") format("opentype");
    font-weight: lighter;
    font-style: normal;
    font-display: fallback;
}

/*@font-face {
    font-family: "Gotham";
    src: url("../assets/fonts/Gotham-Medium.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
  	font-display: fallback;
}*/

@font-face {
    font-family: "Cairo";
    src: url("../assets/fonts/Cairo-Regular.woff2") format("woff2"),
        url("../assets/fonts/Cairo-Regular.woff") format("woff"),
        url("../assets/fonts/Cairo-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

/* line 3, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header {
    background-color: #0f1932;
    color: #f7f7f7;
    height: 70px;
    font-size: 12px;
}

/* line 10, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__menuIcon {
    background-color: transparent;
    border: none;
    outline: none;
}

/* line 16, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__profile {
    margin-inline-start: 10px;
}

/* line 18, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__profile p {
    margin-bottom: 0;
}

/* line 23, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__profile__name {
    color: #0ee89d;
}

/* line 27, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__profile__viewProfile {
    color: #f65e7c;
    transition: color 0.3s;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
}

/* line 35, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__profile__viewProfile:hover {
    color: #0ee89d;
}

/* line 41, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__nav li {
    padding-inline: 10px;
}

/* line 43, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__nav li a {
    color: #f7f7f7;
    position: relative;
    transition: color 0.3s;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
}

/* line 51, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__nav li a.active {
    color: #0ee89d;
}

/* line 53, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__nav li a.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #0ee89d;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

/* line 68, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__nav li a:hover {
    color: #0ee89d;
}

#searchButton:focus {
    box-shadow: unset;
}

.search-input {
    /*form*/
    bottom: -65px;
    right: 0;
    left: 0;
    height: 65px;
    width: 100vw;
    z-index: 10;
    transition: all 0.3s ease-in-out;
}

.search-input>div {
    background-color: white;
    width: 100%;
    height: 100%;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    padding-inline-end: 30px;
    position: relative;
}

.header__search::before {
    content: "Search";
    /* Default text */
    display: block;
    /* Make sure it's visible */
    color: transparent;
    position: absolute;
    left: 0;
    bottom: -14px;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border: solid 7px transparent;
    border-bottom-color: #fff;
}

.header__search.hide-before::before {
    content: "";
    /* Hide text */
    display: none;
    /* Hide pseudo-element */
}

.search-input input.form-control {
    background-color: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    width: 100%;
    padding-inline: 30px;
}

.search-input input:focus {
    box-shadow: none;
}


.search-input>div>button {
    outline: none;
    border: none;
    color: white;
    background-color: #f65e7c;
    width: 70px;
    visibility: hidden;
}

.search-input>div>button:focus,
.search-input>div>button:focus-visible {
    box-shadow: none !important;
    border: none;
}

/* line 77, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__icons button,
.sidebar__icons button {
    background-color: transparent;
    outline: none;
    border: none;
    padding: 10px;
}


/* line 83, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__icons button i,
.header__icons button svg,
.sidebar__icons button i,
.sidebar__icons button svg {
    color: #f7f7f7;
    font-size: 20px;
}

/* line 89, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__icons .header__language .dropdown-toggle,
.sidebar__icons .header__language .dropdown-toggle {
    color: #f7f7f7;
}


/* line 93, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__icons .header__wishlist>i,
.header__icons .header__wishlist>svg,
.sidebar__icons .header__wishlist>i,
.sidebar__icons .header__wishlist>svg {
    color: #f65e7c;
}

/* line 98, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__icons .header__cart,
.sidebar__icons .header__cart {
    position: relative;
}

/* line 101, C:/laragon/www/wepick/public/web_files/sass/layouts/_header.scss */
.header__icons .header__cart .badge,
.sidebar__icons .header__cart .badge {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #f65e7c;
    border-radius: 50%;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    font-size: 8px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* line 3, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar {
    max-width: 250px;
    width: 250px;
    z-index: 20;
    min-height: 100vh;
    height: fit-content;
    position: absolute;
    background-color: #0f1932;
    color: #f65e7c;
    padding-top: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    opacity: 0;
}

/* line 20, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
[dir="rtl"] .sidebar {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    opacity: 0;
}

/* line 28, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar ul {
    list-style: none;
    padding: 10px 20px;
}

/* line 32, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar ul li {
    padding: 10px;
    cursor: pointer;
    position: relative;
    color: #f65e7c;
}

/* line 38, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar ul li button.sidebar__dropdown.toggler {
    background-color: transparent;
    width: 100%;
    border: none;
    outline: none;
    color: inherit;
    text-align: start;
}

/* line 47, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar ul li a {
    color: inherit;
}

/* line 51, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar ul li::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #0ee89d;
    position: absolute;
    left: 0;
    bottom: 0px;
}

/* line 61, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar ul li:hover {
    background-color: #0c152b;
}

.sidebar .header__language ul li:hover {
    background-color: #eee;
}

/* line 65, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar ul li ul.open {
    display: block;
}

/* line 69, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar ul li ul {
    display: none;
}

/* line 72, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar ul li ul li::after {
    display: none;
}

/* line 76, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar ul li ul li a {
    color: #f7f7f7;
}

/* line 84, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
.sidebar.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
}

/* line 90, C:/laragon/www/wepick/public/web_files/sass/layouts/_sidebar.scss */
[dir="rtl"] .sidebar.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
}



.floating__button {
    background-color: #0ee89d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    position: fixed;
    right: 20px;
    left: unset;
    bottom: 20px;
    transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    z-index: 9999999;
}

.floating__button svg,
.floating__button i {
    font-size: 30px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

html:lang(ar) .floating__button {
    left: 20px;
    right: unset;
}

.floating__button:hover {
    background-color: #0bc283;
}

/* line 4, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer {
    background-color: #0f1932;
}

/* line 8, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .footer__logo img {
    object-fit: cover;
    width: 50%;
}

/* line 12, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .footer__logo .footer__social__icons {
    gap: 24px;
}

/* line 14, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .footer__logo .footer__social__icons img {
    width: 20px;
}

/* line 19, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer h6 {
    margin-bottom: 15px;
    color: #f7f7f7;
    font-size: 18px;
}

/* line 24, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .links {
    position: relative;
}

/* line 27, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .links .footer__payment {
    width: 100%;
    margin-inline-start: -50px;
}

@media (min-width: 1200px) {

    /* line 27, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
    #Footer .links .footer__payment {
        margin-inline-start: -85px;
    }
}

@media (min-width: 991px) and (max-width: 1199px) {

    /* line 27, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
    #Footer .links .footer__payment {
        margin-inline-start: -55px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    /* line 27, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
    #Footer .links .footer__payment {
        margin-inline-start: -20px;
    }
}

@media (max-width: 767px) {

    /* line 27, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
    #Footer .links .footer__payment {
        margin-inline-start: -10px;
    }
}

@media (max-width: 360px) {

    /* line 27, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
    #Footer .links .footer__payment {
        margin-inline: -10px;
    }
}

/* line 47, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .links::before {
    content: "";
    position: absolute;
    height: 120px;
    width: 2px;
    background-color: #0ee89d;
    top: 0;
    left: -8px;
}

@media (max-width: 767px) {

    /* line 47, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
    #Footer .links::before {
        display: none;
    }
}

/* line 58, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
html:lang(ar) #Footer .links::before {
    left: 0;
    right: -8px;
}

/* line 64, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .links a,
#Footer .location,
#Footer .footer-links {
    color: #f7f7f7;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    font-weight: 400;
}

/* line 75, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .links a:hover,
#Footer .location:hover,
#Footer .footer-links:hover {
    color: #0ee89d;
    padding-inline-start: 10px;
}

/* line 81, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .footer__download__btns {
    gap: 20px;
}

/* line 83, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .footer__download__btns button {
    background-color: #fff;
    width: 120px;
    border: none;
    outline: none;
    height: 40px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #000;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid #0ee89d;
}

/* line 101, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .footer__bottom {
    color: #f7f7f7;
}

/* line 104, C:/laragon/www/wepick/public/web_files/sass/layouts/_footer.scss */
#Footer .footer__bottom a {
    color: #0ee89d;
}

/* line 36, C:/laragon/www/wepick/public/web_files/sass/app.scss */
body {
    font-weight: normal;
    position: relative;
    background-color: #fff;
}

/* line 41, C:/laragon/www/wepick/public/web_files/sass/app.scss */
body[data-lang="ar"] {
    text-align: right;
    font-family: "Cairo", sans-serif;
}

/* line 16, C:/laragon/www/wepick/public/web_files/sass/app.scss */
body[data-lang="ar"] .header__menuIcon {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

/* line 45, C:/laragon/www/wepick/public/web_files/sass/app.scss */
body[data-lang="en"] {
    text-align: left;
    font-family: "Gotham", sans-serif;
}

/* line 26, C:/laragon/www/wepick/public/web_files/sass/app.scss */
body[data-lang="en"] .header__menuIcon {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

/* line 49, C:/laragon/www/wepick/public/web_files/sass/app.scss */
body input {
    caret-color: #0ee89d;
}

/* line 53, C:/laragon/www/wepick/public/web_files/sass/app.scss */
body .container-wrapper {
    max-width: 1320px;
    width: 100%;
    padding: 50px 20px;
}

@media (min-width: 1200px) {

    /* line 53, C:/laragon/www/wepick/public/web_files/sass/app.scss */
    body .container-wrapper {
        max-width: 1140px;
    }
}

@media (min-width: 991px) and (max-width: 1199px) {

    /* line 53, C:/laragon/www/wepick/public/web_files/sass/app.scss */
    body .container-wrapper {
        max-width: 960px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    /* line 53, C:/laragon/www/wepick/public/web_files/sass/app.scss */
    body .container-wrapper {
        max-width: 720px;
    }
}

@media (max-width: 767px) {

    /* line 53, C:/laragon/www/wepick/public/web_files/sass/app.scss */
    body .container-wrapper {
        max-width: 100%;
        padding-inline: 15px;
    }
}

/* line 73, C:/laragon/www/wepick/public/web_files/sass/app.scss */
body .text-start {
    text-align: start !important;
}

@media (min-width: 768px) {

    /* line 78, C:/laragon/www/wepick/public/web_files/sass/app.scss */
    body .text-md-start {
        text-align: start !important;
    }
}

@media (min-width: 992px) {

    /* line 83, C:/laragon/www/wepick/public/web_files/sass/app.scss */
    body .text-lg-start {
        text-align: start !important;
    }
}

/*# sourceMappingURL=app.css.map */