/* Font faces */

@font-face {
    font-family: tajwal-m;
    src: url('../fonts/Tajawal-Medium.ttf');
}

@font-face {
    font-family: font-r;
    src: url('../fonts/Nunito-Regular.ttf');
}

@font-face {
    font-family: font-l;
    src: url('../fonts/Nunito-Light.ttf');
}

@font-face {
    font-family: font-eb;
    src: url('../fonts/Nunito-ExtraBold.ttf');
}

@font-face {
    font-family: font-sb;
    src: url('../fonts/Nunito-SemiBold.ttf');
}

@font-face {
    font-family: font-b;
    src: url('../fonts/Nunito-Bold.ttf');
}

@font-face {
    font-family: font-eb;
    src: url('../fonts/Nunito-ExtraBold.ttf');
}

/*  COLORS

  Gradient dark header color :  #014857
  Gradient light header color :  #1A87C7
  Dark Main Color : #014857
  Blue Second Color: #36B9E3
  Grey Text Color : #9b9b9b
  Main Text Color: #444

*/
:root {
    --main-color: #008199;
    --secondary-color: #0D6879;
    --white-color: #fff;
    --text-color: #2C2828;
    --text-grey-color: #9B9B9B;
}

p, h1, h2, h4, h3, h4, h5 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

a:hover {
    color: inherit;
}

.mt-16 {
    margin-top: 16px !important;
}

.mt-24 {
    margin-top: 24px !important;
}

.mt-32 {
    margin-top: 32px !important;
}

.mt-24 {
    margin-top: 24px !important;
}

.mt-32 {
    margin-top: 32px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-48 {
    margin-top: 48px !important;
}

.mt-56 {
    margin-top: 56px !important;
}

.mt-64 {
    margin-top: 64px !important;
}

.mr-16 {
    margin-right: 16px !important;
}

.mr-32 {
    margin-right: 32px !important;
}

* {
    box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

body {
    font-family: 'font-r';
    color: var(--text-color);
}


/* Common styles */
.transparent-button, .gradient-button {
    padding: 12px 24px;
    background: transparent;
    outline: none;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
}

.main-button {
    padding: 12px 32px;
    background: var(--main-color);
    border: none;
    outline: none !important;
    cursor: pointer;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    text-align: center;
    transition: all .3s ease-in-out;
}

.main-button:disabled {
    background-color: #ccc;
    cursor: no-drop;
}

.main-button:hover {
    background-color: var(--secondary-color)
}

.secondary-button {
    padding: 12px 40px;
    background: transparent;
    border: 2px solid var(--main-color);
    outline: none !important;
    cursor: pointer;
    border-radius: 50px;
    color: var(--main-color);
    display: inline-block;
    text-align: center;
    transition: all .3s ease-in-out;
}

.secondary-button:hover {
    background: var(--main-color);
    color: #fff;
}

.main-button-white {
    background-color: #fff;
    color: var(--text-color);
}

.main-button:hover {
    color: #fff;
}

.section-title h3 {
    font-size: 24px;
    font-family: 'font-b';
}

.page-title h2 span {
    font-size: 14px;
    color: var(--text-grey-color);
    font-family: 'font-r';
}

.text-ternary-r {
    font-family: 'font-r';
    color: var(--text-color);
}

.text-ternary-sb {
    font-family: 'font-sb';
    color: var(--text-color);
}

.text-ternary-b {
    font-family: 'font-b';
    color: var(--text-color);
}

.text-ternary-r-grey {
    font-family: 'font-r';
    color: var(--text-grey-color);
}

.text-ternary-sb-grey {
    font-family: 'font-sb';
    color: var(--text-grey-color);
}

.text-ternary-b-grey {
    font-family: 'font-b';
    color: var(--text-grey-color);
}

.main-heading {
    font-size: 16px;
    font-family: 'font-b';
}

.header-cart-icon {
    position: relative;
}

.header-cart-icon .notification-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--main-color);
    position: absolute;
    top: 4px;
    left: 24px;
}

/* Start of website content */

/* Start of header */

.top-header {
    background-color: #F6F6F8;
    padding: 8px;
}

.top-header h4 {
    font-size: 14px;
}

.top-header h4 span {
    color: var(--secondary-color);
    font-family: 'font-sb';
}

.header nav {
    background-color: var(--main-color);
}

.header nav .header-search {
    margin-left: 32px;
    position: relative;
}

.header nav .header-search input {
    width: 500px;
    border: none;
    outline: none;
    padding: 12px 24px;
    border-radius: 8px;
}

.header nav .header-search input::placeholder {
    font-size: 14px;
    color: var(--text-grey-color);
}

.header nav .header-search .header-search-icon {
    position: absolute;
    right: 20px;
    top: 12px;
}

.header nav .nav-link {
    color: #fff;
    background-color: rgba(255, 255, 255, .24);
    margin-left: 16px;
    display: inline-block;
    border-radius: 8px;
    padding: 12px 16px !important;
}

.header nav .nav-link.change-lang {
    font-family: 'tajwal-m';
    background-color: transparent;
}

.header .navbar-brand img {
    width: 64px;
}

.header .navbar-toggler span {
    color: #fff;
}

/* End of header */


/* End of website content */


/*Revolution Slider*/


#rev_slider_full h1 {
    font-size: 38px;
}

#rev_slider_third h2 {
    font-size: 35px;
    margin-top: 0 !important;
    font-weight: bold;
}

.rev_slider .slider-slogan {
    display: block;
}

.rev_slider .slider-slogan.slider-slogan-white {
    color: #fff;
}

.rev_slider .slider-slogan + a {
    display: block;
    width: 200px;
    margin-top: 40px !important;
}

#rev_slider_full a {
    margin-left: 5px;
    margin-right: 5px;
}

#rev_slider_full a:hover,
#rev_slider_full a:focus {
    background: #fff;
    border-color: #fff;
    color: #1F1D22;
}

.slider-property {
    position: absolute;
    top: 34%;
    width: 510px;
    max-width: 99%;
}

.slider-property {
    font-weight: normal;
}

.rev_slider_wrapper .slider-caption,
.rev_slider_wrapper .black-caption {
    height: auto;
    width: auto;
    display: inline-table;
    margin: 15px;
}

.rev_slider_wrapper .black-caption {
    padding: 20px 15px 0px 15px !important;
    border-radius: 4px;
}

.rev_slider_wrapper .black-caption .price {
    background: #092f87;
    font-size: 12px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    padding: 5px 15px;
    border-top-right-radius: 4px;
}

.black-caption .bottom {
    background: transparent;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding-bottom: 10px
}

.black-caption .bottom span {
    display: inline-block;
    padding: 6px 0 !important;
}

.black-caption .bottom i {
    color: #3173B8;
    font-size: 24px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.rev_slider_wrapper .slider-caption .bg_blue,
.slider-property .bg_blue {
    color: #fff;
    padding: 15px 30px !important;
    display: inline-table;
    background: #34495e;
    margin: 0 !important;
}

.rev_slider_wrapper .slider-caption .bg_white,
.slider-property .bg_white {
    color: #fff;
    padding: 15px 30px;
    background: rgba(255, 255, 255, .95);
}

.rev_slider_wrapper .slider-caption .bg_white h2,
.rev_slider_wrapper .slider-caption h4.bg_blue,
.rev_slider_wrapper .slider-caption .bg_white .btn-more {
    font-weight: normal;
}

.slider-caption .property_meta,
.slider-property .property_meta {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.black-caption .property_meta {
    display: table;
    width: 100%;
}

.white_cap .property_meta span,
.black-caption .property_meta span {
    font-size: 12px;
    line-height: 40px;
    display: inline-block;
}

.white_cap .price {
    background: #ffd119;
    color: #191919;
    font-size: 14px;
    padding: 5px 15px;
    margin: 5px 5px 0 0;
}

.topper {
    background: #000;
    display: inline-block;
    padding: 10px;
    color: #fff;
    margin: 0;
}

.black-caption .property_meta span {
    padding-right: 45px;
}

.slider-caption .property_meta,
.slider-property .property_meta span {
    background: #2c3e50;
}

.slider-caption .property_meta span,
.slider-property .property_meta span {
    border-right: 1px solid #e5e5e5;
    text-align: center;
}

.slider-caption .property_meta span,
.slider-property .property_meta span {
    display: table-cell;
    font-size: 12px;
    line-height: 36px;
    color: #fff;
}

.rev_slider_wrapper .slider-caption .property_meta span:last-child,
.slider-property .property_meta span:last-child {
    border-right: none;
}

.white_cap {
    background: #fff;
    outline: 5px solid #000;
    outline-offset: -10px;
    display: table;
    padding: 5px;
}

.white_cap .white_cont {
    padding: 30px 14px;
    border-bottom: 2px solid #000;
}

.white_cap .bottom_text {
    border-top: 2px solid #000;
    padding: 15px;
}

.white_cap .bottom_text p {
    margin-bottom: 0;
}

.property_meta span > i,
.white_cap .bottom_text p > i {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 5px !important;
}

.tparrows.tp-rightarrow {
    background: url(../images/arrow-right.png) no-repeat;
}

.tparrows.tp-leftarrow {
    background: url(../images/arrow-left.png) no-repeat;
}

.tp-rightarrow,
.tp-leftarrow {
    margin: 5px;
    height: 46px;
    width: 46px;
}

.dione .tp-bullet {
    background: rgba(0, 0, 0, 0.55);
    height: 80px;
    width: 120px;
    padding: 5px;
}

.dione .tp-bullet-image {
    width: 100%;
    height: 100%;
}

.dione .tp-bullet > span {
    background: rgba(0, 0, 0, .9);
    opacity: 0.85;
}

.dione .tp-bullet.selected,
.dione .tp-bullet:hover {
    background: #fff;
    opacity: 1;
}

.rev_slider_wrapper p {
    line-height: normal !important;
    font-size: 25px !important;
    padding-bottom: 20px !important;
}

#rev_overlaped h1 {
    font-size: 48px;
    font-weight: bold;
}

#rev_overlaped p {
    font-size: 17px;
}

.tp-bullet {
    width: 30px;
    height: 4px;
    border-radius: 1px;
    background: #fff;
}

.tp-bullet.selected,
.tp-bullet:hover {
    background: #aaa7a0;
}

.tp_overlay {
    background: rgba(31, 63, 129, 0.9);
    display: inline-table;
    overflow: hidden;
    position: absolute;
    right: 0;
    left: initial;
    top: 0;
    z-index: 990;
    width: 40%;
}

.tp_overlay .topbar {
    background: #fff;
    position: relative;
    top: 0;
    width: 100%;
}

.tp_overlay .topbar .header--top {
    display: block;
    margin: 0;
    padding: 0 0 0 12px;
}

.tp_overlay .topbar ul.header--top li a {
    font-size: 10px;
    padding: 10px 3px 6px 3px;
    display: inline-block;
}

.tp_overlay form.callus {
    padding: 30px 30px 15px 30px;
}

.tp_overlay .search-form-group.white > span {
    font-size: 12px;
}

.tp_overlay form.callus .btn-blue {
    background: #ffd119;
}

.form_opener {
    z-index: -1;
    position: absolute;
}

.tp_overlay .search-propertie-filters .container-2 {
    padding-left: 5px;
}

.tp_overlay .btn-yellow:hover,
.tp_overlay .btn-yellow:focus {
    background: #fff;
    color: #000;
}

.tp_overlay .header--top li a {
    padding: 10px 5px 6px;
}

.tp_overlay .header--top li.last-icon {
    background: #ffd119 none repeat scroll 0 0;
    float: right;
    font-size: 16px;
    padding: 6px 9px;
    color: #191919;
}

.tp_overlay .header--top li.last-icon a {
    padding: 10px 6px 10px 10px !important;
}

.tp_overlay .header--top li.last-icon:before {
    display: none;
}


/*Revolution Slider ends*/

/* Start of categories */
.categories {
    background-color: #F6F6F8;
}

.categories .categories-mobile-view {
    display: none;
}

.categories ul {
    display: flex;
    padding: 20px 0;
    justify-content: center;
}

.categories ul li a {
    color: #777;
    margin-right: 20px;
}

.categories ul li a.active {
    color: var(--text-color);
    font-family: 'font-b';
}

/* End of categories */

/* Start of categories banners */
.categories-banners {
    margin-top: 64px;
}

.categories-banners .categories-banners-box {
    border-radius: 20px;
    padding: 24px 32px;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 186px;
}

.categories-banners .categories-banners-box h2 {
    font-size: 24px;
    font-family: 'font-b';
    line-height: 32px;
    margin-bottom: 16px;
}

.categories-banners .categories-banners-box img {
    width: 136px;
}

.categories-banners .categories-banners-box .banners-button {
    padding: 12px 32px;
    font-size: 14px;
}

.categories-banners .categories-banners-box > div:first-child {
    margin-right: 16px;
}

.categories-banners .categories-banners-box.banner-color-1 {
    background-color: #E6F0F9;
}

.categories-banners .categories-banners-box.banner-color-2 {
    background-color: #D95C46;
}

.categories-banners .categories-banners-box.banner-color-2 h2 {
    color: #fff;
}

/* End of categories banners */

/* Start of Full card */
.product-full-card {
    margin-top: 40px;
    box-shadow: 4px 4px 36px rgba(0, 0, 0, .1);
    padding: 16px 24px 32px 24px;
    border-radius: 16px;
}

.product-full-card .product-image {
    width: 100%;
    height: 275px;
    text-align: center;
}

.product-full-card .product-image img {
    width: auto;
    height: 100%;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    object-fit: cover;
}

.product-full-card .product-body {
    margin-top: 20px;
}

.product-full-card .product-body .product-category {
    font-size: 12px;
    color: var(--text-grey-color);
}

.product-full-card .product-body .product-title {
    font-size: 16px;
    font-family: 'font-b';
    margin-top: 8px;
    line-height: 26px;
    color: var(--text-color);
}

.product-full-card .product-body .product-price {
    margin-top: 16px;
    color: var(--text-color);
}

.product-full-card .product-body .product-price span {
    font-size: 20px;
    font-family: 'font-b';
}

.product-full-card .product-body .product-price .old-price {
    color: var(--text-grey-color);
    font-size: 14px;
    text-decoration: line-through;
    font-family: 'font-r';
    margin-right: 16px;
}

.product-full-card .product-body .product-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.product-full-card .product-body .product-cta .main-button {
    padding-left: 64px;
    padding-right: 64px;
}

.product-full-card .product-body .product-cta .main-button img {
    margin-right: 16px;
}

.product-full-card .product-body .product-cta .product-addToFav {
    background-color: #f7f7f7;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
}

/* End of Full card */

/* Start of full banner */
.full-banner {
    background-color: #E6F0F9;
    height: 228px;
    padding: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
}

.full-banner h2 {
    font-size: 24px;
    line-height: 40px;
    font-family: 'font-b';
    margin-bottom: 40px;
}

.full-banner .banner-discription {
    margin-right: 32px;
    width: 65%;
}

.full-banner .banner-image img {
    width: 200px;
}

.full-banner .banner-discription .main-button {
    width: 200px;
}

/* End of full banner */

/* Start of products small card */
.products-small-card {
    margin-top: 64px;
}

.product-small-card {
    margin-top: 40px;
}

.product-small-card .product-image {
    width: 100%;
    height: 264px;
    text-align: center;
    background-color: #F7F7F7;
    position: relative;
}

.product-small-card .product-image > img {
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    object-fit: cover;
}

.product-small-card .product-cta {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .55);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
    transition: all .3s ease-in-out;
    opacity: 0;
}

.product-small-card .product-cta a {
    display: block;
}

.product-small-card .product-cta .main-button {
    margin-bottom: 16px;
}

.product-small-card .product-body {
    margin-top: 20px;
}

.product-small-card .product-body .product-category {
    font-size: 12px;
    color: var(--text-grey-color);
}

.product-small-card .product-body .product-title {
    font-size: 14px;
    font-family: 'font-b';
    margin-top: 4px;
    line-height: 22px;
    color: var(--text-color);
}

.product-small-card .product-body .product-price {
    margin-top: 16px;
    color: var(--text-color);
}

.product-small-card .product-body .product-price span {
    font-size: 18px;
    font-family: 'font-b';
}

.product-small-card .product-body .product-price .old-price {
    color: var(--text-grey-color);
    font-size: 12px;
    text-decoration: line-through;
    font-family: 'font-r';
    margin-right: 16px;
}

.product-small-card:hover .product-cta {
    opacity: 1;
}

/* End of products small card */

/* Start of small banner */
.products-banners {
    margin-top: 64px;
}

.product-small-banner {
    background-color: #f7f7f7;
    height: 228px;
    padding: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
}

.product-small-banner h2 {
    font-size: 16px;
    line-height: 24px;
    font-family: 'font-b';
    margin-bottom: 24px;
}

.product-small-banner .banner-discription {
    margin-right: 32px;
    width: 75%;
}

.product-small-banner .banner-image img {
    width: 200px;
}

.product-small-banner .banner-discription .main-button {
    width: 160px;
}

/* End of small banner */

/* Start of download app */
.download-app {
    background-color: var(--main-color);
    height: auto;
    padding-left: 104px;
    padding-right: 104px;
    padding-top: 40px;
    padding-bottom: 0;
    align-items: flex-start;
}

.download-app h2 {
    color: #fff;
    font-size: 36px;
    line-height: 56px;
}

.download-app a {
    margin-right: 24px;
}

/* End of download app */


/* Start of product details */

/* .product-slider li{
  background-color: #ed3020;
  text-align: center;
  color: #FFF;
}
.product-slider h3 {
  margin: 0;
  padding: 70px 0;
}
.product-details-slider{
width: 800px;
} */


.product-details-info .product-category {
    font-size: 14px;
    color: var(--text-grey-color);
}

.product-details-info .product-title {
    font-size: 18px;
    font-family: 'font-b';
    margin-top: 8px;
    line-height: 26px;
}

.product-details-info .product-price {
    margin-top: 16px;
}

.product-details-info .product-price span {
    font-size: 24px;
    font-family: 'font-b';
}

.product-details-info .product-price .old-price {
    color: var(--text-grey-color);
    font-size: 16px;
    text-decoration: line-through;
    font-family: 'font-r';
    margin-right: 16px;
}

.product-details-info .product-details-description {
    color: var(--text-grey-color);
    font-size: 14px;
    margin-top: 16px;
}

.product-details-info .product-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-details-info .product-cta .main-button {
    padding-left: 64px;
    padding-right: 64px;
}

.product-details-info .product-cta .main-button img {
    margin-right: 16px;
}

.product-details-info .product-cta .product-addToFav {
    background-color: #f7f7f7;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
}

.product-details-info .product-cta .product-addToFav {
    background-color: #f7f7f7;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
    margin-left: 24px;
}

.product-details-info .product-details-options .options-heading {
    margin-top: 24px;
    font-size: 16px;
    font-family: 'font-sb';
}

.product-details-info .product-details-options ul {
    margin-top: 16px;
    display: flex;
}

.product-details-info .product-details-options ul li {
    background-color: #F7F7F7;
    color: var(--text-grey-color);
    font-size: 14px;
    padding: 12px 32px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 12px;
}

.product-details-info .product-details-options ul li.active {
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-family: 'font-sb';
}

.product-details-info .product-details-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
}

.product-details-info .product-details-cta .product-seller {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.product-details-info .product-details-cta .product-seller span:first-child {
    color: var(--text-grey-color);
    font-size: 14px;
}

.product-details-info .product-details-cta .product-seller span:last-child {
    color: var(--main-color);
    font-size: 14px;
    font-family: 'font-b';
}

/* Product more details */

.product-more-details .nav-tabs {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 24px;
}

.product-more-details .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
    padding: 12px 40px;
    color: var(--text-grey-color);
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.product-more-details .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover {
    background-color: transparent;
    border: none;
}

.product-more-details .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50px;
}

.product-more-details .specs-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    background-color: #F2F5FC;
    padding: 12px 24px;
}

.product-more-details .specs-list li h5 {
    font-size: 14px;
    font-family: 'font-sb';
}

.product-more-details .specs-list li:nth-child(2n) {
    background-color: #fff;
}

.product-more-details .more-details-description {
    color: var(--text-grey-color);
}

#product-image-gallery {
    min-height: 375px;
}

#product-image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* End of product details */


/* Start of all products page */
.page-title {
    margin-top: 64px;
}

.page-title h2 {
    font-size: 32px;
    font-family: 'font-b';
}

.all-products-content {
    margin-top: 64px;
}

.all-products-content .products-filters .filter-box {
    background-color: #F7F7F7;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.all-products-content .products-filters .filter-heading h3 {
    font-size: 18px;
    font-family: 'font-sb';
}

.all-products-content .filter-body {
    margin-top: 24px;
}

.all-products-content .filter-body .filter-checkbox {
    margin-top: 20px;
}

.all-products-content .filter-body .filter-price input {
    width: 35%;
    border: none;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 4px 8px;
}

.all-products-content .filter-body .filter-price span {
    color: var(--text-grey-color);
    font-size: 14px;
    margin: 0 8px;
}

.all-products-content .filter-body .filter-price button {
    background-color: var(--main-color);
    border: none;
    outline: none;
    margin-top: 16px;
    border-radius: 4px;
    color: #fff;
    padding: 4px 12px;
    cursor: pointer;
}

.all-products-preview .all-products-filter-sorting {
    box-shadow: 4px 4px 36px rgba(0, 0, 0, .12);
    padding: 16px 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.all-products-preview .filter-sorting-options label {
    margin: 0;
    margin-right: 16px;
    color: var(--text-grey-color);
    font-size: 14px;
}

.all-products-preview .filter-sorting-options select {
    padding: 4px 12px;
    border: 1px solid #ddd;
}

.all-products-preview .all-products-result {
    color: var(--text-grey-color);
    font-size: 14px;
}

.all-products-preview .product-full-card {
    padding: 16px 16px 24px 16px;
    border-radius: 12px;
}

.all-products-preview .product-full-card .product-body .product-title {
    font-size: 16px;
}

.all-products-preview .product-full-card .product-body .product-price .old-price {
    font-size: 14px;
}

.all-products-preview .product-full-card .product-body .product-price span {
    font-size: 16px;
}

.all-products-preview .product-full-card .product-body .product-cta .main-button {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
}

.all-products-preview .product-full-card .product-body .product-cta .main-button img {
    margin-right: 4px;
}

.all-products-preview .product-full-card .product-image {
    height: 220px;
}

/* Pagination */
.page-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.page-pagination ul {
    display: flex;
}

.page-pagination li {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    box-shadow: 4px 4px 32px rgba(0, 0, 0, .12);
    border-radius: 50%;
    margin-right: 16px;
    list-style: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.page-pagination li:hover {
    background-color: var(--main-color);
    color: #fff;
}

.page-pagination ul li.active {
    background-color: var(--main-color);
    color: #fff;
}

/* End of all products page */

/* Start of my cart */
.order-pages {
    margin-top: 64px;
}

.order-checkout-card, .cart-summry-box {
    box-shadow: 4px 4px 36px rgba(0, 0, 0, .1);
    padding: 24px;
    border-radius: 16px;
    margin-top: 32px;
}

.order-checkout-card .order-checkout-image img {
    width: 128px;
    margin-right: 20px;
}

.order-checkout-card .order-checkout-details {
    display: flex;
    align-items: flex-start;
}

.order-checkout-card .order-checkout-info .product-category {
    color: var(--text-grey-color);
    font-size: 14px;
}

.order-checkout-card .order-checkout-info .product-title {
    font-size: 16px;
    font-family: 'font-sb';
    margin-top: 4px;
}

.order-checkout-card .order-checkout-cta {
    display: flex;
    margin-top: 12px;
}

.order-checkout-card .order-checkout-cta > div {
    margin-right: 16px;
    color: var(--text-grey-color);
    cursor: pointer;
    font-size: 14px;
}

.order-checkout-card .order-checkout-cta div span {
    margin-left: 8px;
}

.order-checkout-card .order-checkout-summary {
    display: flex;
    justify-content: space-between;
}

.order-checkout-card .order-checkout-summary .order-quantity select {
    padding: 4px 16px;
    border-radius: 4px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.order-checkout-card .order-checkout-summary .order-price {
    font-size: 18px;
    font-family: 'font-b';
}

.cart-summry-box .cart-summry-heading {
    font-size: 16px;
    font-family: 'font-b';
    margin-bottom: 32px;
}

.cart-summry-box .cart-summry-copoun {
    margin-bottom: 24px;
}

.cart-summry-box .cart-summry-copoun label {
    margin-bottom: 8px;
    color: var(--main-color);
    font-size: 14px
}

.cart-summry-box .cart-summry-copoun input {
    padding: 8px 12px;
    width: 60%;
    border: 1px solid #ddd;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.cart-summry-box .cart-summry-copoun input::placeholder {
    font-size: 14px;
    color: var(--text-grey-color);
}

.cart-summry-box .cart-summry-copoun button {
    width: 40%;
    padding: 8px 12px;
    border: none;
    background-color: var(--main-color);
    color: #fff;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid var(--main-color);
    font-size: 14px;
}

.cart-summry-box .cart-summry-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.cart-summry-box .cart-summry-row span:first-child {
    color: var(--text-grey-color);
}

.cart-summry-box .cart-summry-row span:last-child {
    color: var(--text-color);
    font-family: 'font-sb';
}

.discount-color {
    color: #34C063 !important;
}

.cart-summry-box .cart-summry-row.cart-summry-total {
    margin-top: 32px;
}

.cart-summry-box .cart-summry-row.cart-summry-total span:last-child {
    font-family: 'font-b';
}

.order-checkout-button {
    margin-top: 32px;
}

.order-checkout-button button {
    width: 100%;
}

/* End of my cart */

/* Start of checkout process pages */
.checkout-process-steps .checkout-process-steps-icon {
    color: var(--text-grey-color);
    font-size: 18px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border: 1px solid #ddd;
    margin-bottom: 16px;
    border-radius: 50%;
}

.checkout-process-steps .checkout-process-steps-icon.active {
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
}

.checkout-process-steps .checkout-process-steps-heading {
    font-size: 16px;
    color: var(--text-grey-color);
}

.checkout-process-steps .checkout-process-steps-heading.active {
    color: var(--text-color);
    font-family: 'font-sb';
}

.checkout-steps.center-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.checkout-steps.center-content img.img-no-address {
    width: 372px;
    margin-bottom: 24px;
}

.checkout-steps.center-content a.secondary-button {
    width: 264px;
    margin-top: 48px;
}

.checkout-steps .checkout-steps-header {
    display: flex;
    justify-content: space-between;
}

.checkout-steps .checkout-steps-header h3 {
    font-family: 'font-sb';
    font-size: 16px;
}

.order-done-box .order-done-image img {
    width: 50%;
}

.order-done-box .order-done-info h3 {
    font-size: 20px;
    line-height: 32px;
    font-family: 'font-sb';
}

.order-done-box .order-done-info h3 span {
    color: var(--secondary-color);
    font-family: 'font-b';
    font-size: 24px;
}

.order-done-box .order-done-info + .order-checkout-button button {
    width: 200px;
}

/* Start of address card */
.address-details-card, .payment-card-row {
    background-color: #f7f7f7;
    padding: 32px;
    margin-top: 24px;
    border-radius: 16px;
    cursor: pointer;
}

.address-details-card.selected {
    border: 2px solid var(--main-color);
}

.address-details-card .address-card-heading {
    font-size: 14px;
    font-family: 'font-b';
}

.address-details-card .address-card-body {
    font-size: 14px;
    margin-top: 16px;
}

.address-details-card .address-card-row {
    display: flex;
    margin-bottom: 8px;
    flex-direction: column;
    flex-wrap: wrap;
}

.address-details-card .address-card-row .custom-radio .custom-control-input:checked ~ .custom-control-label {
    cursor: pointer;
}

.address-details-card .address-card-row .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--main-color)
}

.address-details-card .address-card-row .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--main-color)
}

.address-details-card .address-card-row span:first-child {
    width: 100px;
    color: var(--text-grey-color);
}

/* Start of payment page */
.payment-card-row .card-heading {
    font-size: 16px;
}

.payment-card-row .card-heading > img {
    margin-right: 12px;
}

.payment-card-row.selected {
    border: 2px solid var(--main-color);
}

.payment-card-row .card-heading span {
    color: var(--text-grey-color);
    font-size: 13px;
    margin-top: 12px;
    display: inline-block;
}

.payment-card-row .card-body .form-data label {
    display: block;
    color: #777;
}

.payment-card-row .card-body .form-data input {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 4px 4px 36px rgba(0, 0, 0, .09);
    padding: 12px 24px;
}

.payment-card-row .card-body .form-data .form-data-row {
    margin-bottom: 20px;
}

/* Chrome, Safari, Edge, Opera */
.payment-card-row .card-body .form-data input::-webkit-outer-spin-button,
.payment-card-row .card-body .form-data input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.payment-card-row .card-body .form-data input[type=number] {
    -moz-appearance: textfield;
}

.online-payment .card-body {
    display: none;
}

/* End of checkout process pages */

/* Start of my account */
.account-side-menu-card {
    background-color: #f7f7f7;
    padding: 32px;
    border-radius: 16px;
}

.account-side-menu-card .card-row {
    margin-bottom: 20px;
}

.account-side-menu-card .card-row:last-child {
    margin-bottom: 0;
}

.account-side-menu-card .card-row a {
    color: var(--text-grey-color);
}

.account-side-menu-card .card-row a.active {
    color: var(--main-color);
}

.account-side-menu-card .card-row i {
    margin-right: 12px;
}

.myorders-content .myorders-content-header a {
    color: var(--text-grey-color);
    margin-right: 24px;
}

.myorders-content .myorders-content-header a.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 16px;
}

.myorders-content .myorders-content-header a.page-back {
    color: var(--text-color);
    font-family: 'font-sb';
}

.myorders-content .myorders-content-header a.page-back span {
    margin-left: 16px;
}

.myorders-content .myorders-content-tabs a {
    color: var(--text-grey-color);
    margin-right: 24px;
}

.myorders-content .myorders-content-tabs a.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 16px;
}

.myorders-content .myorders-content-tabs a.page-back {
    color: var(--text-color);
    font-family: 'font-sb';
}

.myorders-content .myorders-content-tabs a.page-back span {
    margin-left: 16px;
}

.order-status-card .card-row.order-number {
    margin-top: 20px;
}

.order-status-card .card-row.order-number span {
    margin-right: 24px;
    color: var(--text-color);
    font-size: 14px;
}

.order-status-card .card-row.order-number span:first-child {
    color: var(--text-grey-color);
}

.order-status-card .card-row.order-number span:nth-child(2) {
    font-family: 'font-b';
}

.order-status-card .card-row.order-number span.order-status {
    background-color: #ccc;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'font-l';
}

.order-status-card .card-row.order-number span.order-status.shipping {
    background-color: #c89334;
}

.order-status-card .card-row.order-number span.order-status.completed {
    background-color: #34C063;
}

.order-status-card .card-row.order-number span.order-status.canceled {
    background-color: #EC4747;
}

.order-status-card .card-row .order-date {
    font-family: 'font-b';
    font-size: 14px;
    margin-top: 16px;
    display: inline-block;
}

.order-status-card .main-button {
    font-size: 14px;
}

.address-details-card.order-details-page {
    background-color: #fff;
    box-shadow: 4px 4px 36px rgb(0 0 0 / 10%);
    padding: 32px;
    border-radius: 16px;
    margin-top: 32px;
}

.order-details-page-cta {
    margin-top: 48px;
}

.order-details-page-cta a {
    width: 256px;
}

.order-details-page-cta a:first-child {
    margin-right: 24px;
}

.order-numbers-info {
    display: flex;
    margin-top: 24px;
}

.order-numbers-info div {
    margin-right: 24px;
    color: var(--text-grey-color);
}

.order-tracking-status {
    margin-top: 24px;
}

.order-tracking-status h4 {
    font-size: 14px;
    font-family: 'font-b';
}

.order-tracking-status .order-progress-bar {
    background-color: #F7F7F7;
    border-radius: 50px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
}

.order-tracking-status .order-progress-bar span {
    font-size: 14px;
    color: var(--text-grey-color);
    display: inline-block;
    padding: 16px 32px;
}

.order-tracking-status .order-progress-bar span.completed {
    background-color: #34C063;
    color: #fff;
    border-radius: 50px;
}

.order-tracking-status .order-progress-bar span i {
    margin-right: 8px;
}

.order-tracking-info {
    margin-top: 40px;
    box-shadow: 4px 4px 36px rgba(0, 0, 0, .1);
    padding: 32px;
    border-radius: 16px;
}

.order-tracking-info h4 {
    font-size: 14px;
    font-family: 'font-b';
    margin-bottom: 32px;
}

.order-tracking-info span {
    color: var(--text-grey-color);
    font-size: 14px;
    display: block;
    margin-top: 16px;
}

.default-address-checkbox {
    margin-top: 24px;
}

.address-details-card.order-details-page.my-addresses.selected {
    border: 2px solid var(--main-color);
}

.grey-card {
    background-color: #f7f7f7;
    padding: 32px;
    border-radius: 16px;
    margin-top: 40px;
}

.grey-card .form-data label {
    display: block;
    color: #777;
}

.grey-card .form-data input, .grey-card .form-data select {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 4px 4px 36px rgba(0, 0, 0, .09);
    padding: 12px 24px;
}

.grey-card .form-data .form-data-row {
    margin-bottom: 20px;
}

/* End of my account */


/* Start of footer */
footer {
    background-color: #F6F6F6;
    padding-top: 40px;
    padding-bottom: 32px;
    border-top-left-radius: 64px;
    border-top-right-radius: 64px;
    position: relative;
}

footer .footer-logo img {
    width: 128px;
}

.footer-berif .footer-company-berif p {
    color: var(--text-grey-color);
    font-size: 14px;
    margin-top: 32px;
}

.footer-berif .footer-company-berif + img {
    margin-top: 24px;
}

footer .footer-social h5 {
    font-size: 16px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-family: 'font-sb';
}

footer .footer-social li {
    margin-right: 16px;
}

footer .footer-title {
    font-size: 20px;
    font-family: 'font-sb';
    margin-bottom: 40px;
    margin-top: 24px;
}

footer .footer-links-list {
    display: flex;
}

footer .footer-links-list ul:first-child {
    margin-right: 24px;
}

footer .footer-links-list li {
    margin-bottom: 12px;
}

footer .footer-links-list li a {
    color: #555;
    font-family: 'font-sb';
    font-size: 14px;
    transition: all .3s ease-in-out;
}

footer .footer-links-list li a:hover, footer .footer-contacts-content p:hover {
    font-family: 'font-b';
    padding-left: 4px;
}

footer .footer-contacts-content > div {
    margin-bottom: 16px;
}

footer .footer-contacts-content img, .contactus-info img {
    margin-right: 16px;
}

footer .footer-contacts-content p, footer .footer-contacts-content a {
    font-size: 14px;
    color: #555;
    font-family: 'font-sb';
    transition: all .3s ease-in-out;
}

footer hr {
    margin: 32px 0;
}

footer .copyrights {
    display: flex;
    justify-content: center;
}

footer .copyrights p {
    color: var(--text-grey-color);
    font-size: 14px;
    font-family: 'font-sb';
}

footer .copyrights p span {
    color: var(--main-color);
    font-family: 'font-b';
}

.alert-message-box {
    position: absolute;
    top: 180px;
    right: 64px;
    display: none;
    z-index: 999999;
}

/* Media Query */
@media screen and ( min-width: 1200px) {

}

@media (max-width: 992px) {

}

@media (max-width: 768px) {
    .header .navbar-brand {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }

    .header nav {
        padding-bottom: 24px;
    }

    img {
        max-width: 100%;
    }

    .categories .categories-mobile-view h4 {
        font-size: 14px;
        font-family: 'font-b';
    }

    .product-small-banner h2 {
        font-size: 14px;
        line-height: 22px;
        font-family: 'font-sb';
        margin-bottom: 28px;
    }

    .product-small-banner {
        padding: 32px;
        margin-bottom: 20px;
    }

    .full-banner .banner-discription {
        margin-right: 0;
    }

    footer {
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
    }

    footer::before {
        content: none;
    }

    footer .copyrights p {
        text-align: center;
        line-height: 28px;
    }

    footer hr {
        margin: 12px 0;
    }

    .header nav .header-search input {
        width: 300px;
    }

    .header nav .nav-link {
        margin-bottom: 20px;
    }

    .header .navbar-list-menu {
        display: flex;
        flex-direction: row;
        margin-top: 24px;
        justify-content: space-evenly;
    }

    .categories .categories-mobile-view {
        display: block;
        font-family: 'font-sb';
        font-size: 18px;
        cursor: pointer;
    }

    .categories {
        padding: 16px 32px
    }

    .categories ul {
        display: none;
    }

    .categories-banners .categories-banners-box {
        margin-bottom: 32px;
    }

    .rev_slider .slider-slogan.slider-slogan-white, .black-caption .bottom span {
        display: none;
    }

    .categories ul li a {
        margin-bottom: 8px;
        display: inline-block;
    }

    .full-banner h2 {
        font-size: 16px;
        line-height: 28px;
        font-family: 'font-b';
        margin-bottom: 24px;
    }

    .download-app {
        padding: 40px;
    }

    .full-banner .banner-discription {
        width: 100%;
    }

    .full-banner .banner-image {
        text-align: center;
    }

    .download-app .banner-image {
        display: none;
    }

    .download-app a {
        margin-right: 16px;
    }

    .download-app a img {
        width: 120px;
    }

    #rev_slider_third h2 {
        display: none;
    }

    .page-title, .all-products-content {
        margin-top: 40px;
    }

    .all-products-content .filter-body {
        display: none;
    }

    .all-products-content .products-filters .filter-box {
        padding: 12px 24px;
        border-radius: 8px;
    }

    .all-products-content .products-filters .filter-heading h3 {
        font-size: 14px;
        cursor: pointer;
    }

    .all-products-content .filter-body label {
        font-size: 14px;
    }

    .account-side-menu-card {
        margin-bottom: 40px;
    }

    .order-checkout-show-details {
        margin-top: 24px;
    }

    .order-checkout-card .order-checkout-info .product-title {
        font-size: 14px;
    }

    .order-status-card .card-row .order-date {
        font-size: 12px;
    }

    .order-status-card .card-row.order-number span.order-status {
        font-size: 10px;
    }

    .order-details-page-cta {
        display: flex;
        justify-content: space-evenly;
    }

    .order-details-page-cta a {
        width: 220px;
    }

    .order-details-page-cta a:first-child {
        margin-right: 12px;
    }

    .order-details-page-cta a {
        font-size: 13px;
    }

    .order-tracking-status .order-progress-bar span {
        padding: 8px 16px;
        font-size: 12px;
    }

    .order-checkout-summary {
        margin-top: 24px;
    }

    footer .footer-title {
        margin-top: 24px;
        margin-bottom: 20px;
        font-family: 'font-b';
        font-size: 16px;
    }

    .full-banner {
        padding: 24px;
        display: block;
        height: auto;
    }
}

@media (max-width: 500px) {
    .header nav .header-search input {
        width: 256px;
    }
}
