body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    padding-top: 100px;
    font-family: 'Poppins', sans-serif !important; 
}

.ltr_effect,
.ttb_effect {
    position: relative;
}

.ltr_effect:after,
.ttb_effect:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #4C80DB;
    z-index: -1;
}

.ltr_effect:after {
    width: 0;
    transition: width 0.2s;
}

.ttb_effect:after {
    height: 0;
    transition: height 0.2s;
}

.ltr_effect:hover:after {
    width: 100%;
}

.ttb_effect:hover:after {
    height: 100%;
}


.popup_setting {
    padding: 20px;
    padding-bottom: 0px;
    text-align: center;
}

.popup_setting ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup_setting ul li {
    width: 100%;
    margin: auto;
    padding: 5px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd78;
}

.popup_setting ul li:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.popup_setting ul li a {
    color: #686868;
    font-weight: 500;
    text-decoration: none;
    outline: none;
}

.popup_setting ul li a i {
    color: #4C80DB;
    margin-right: 5px;
    font-size: 20px;
}

.popup_setting ul li .Delete {
    color: red;
}

.popup_setting ul li .Delete:hover {
    color: red;
}

.popup_setting ul li a:hover {
    color: #4C80DB;
}

.leftBar {
    width: 90%;
    margin: auto;
    overflow: hidden;
    margin-bottom: 20px;
}

.leftBar .Links {
    background-color: #f8f8f8;
    padding: 30px;
    margin-bottom: 20px;
    overflow: hidden;
}

.leftBar .Links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leftBar .Links ul li {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.leftBar .Links ul li:last-of-type {
    margin-bottom: 0;
}

.leftBar .Links ul li a {
    text-decoration: none;
    outline: none;
    color: #000;
    font-weight: 600;
}

.leftBar .Links ul li a.active,
.leftBar .Links ul li a:hover {
    color: #4C80DB;
}


.leftBar .Links ul li a.logout {
    color: #D8301F;
}

.leftBar .Links ul li a i {
    position: absolute;
    right: 3%;
    top: 11%;
    font-size: 18px;
}

.leftBar .ads img {
    width: 100%;
    height: auto;
}

input.upload-box {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 24px;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

input,textarea {
    color: #000;
}

.Form select{
    border: none;
    box-shadow: none;
    color: #949494;
    transition: all 0.2s ease-in-out;
}

.Form > .form-group{
    position: relative;
}
  
.Form label{
    position: absolute;
    opacity: 0.6;
    font-size: 16px;
    left: 0;
    pointer-events: none;
    color:#949494;
    transition: all .22s;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}
  
.Form input{
    box-shadow: none;
    outline: none;
    width: 100%;
    padding: 10px;
    padding-left: 0;
    margin: 1.5rem 0;
    background: none;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.2s ease-in-out;
}

.Form textarea {
    resize: none;
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    padding: 10px;
    margin: 1.5rem 0;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 20px;
    padding-left: 0;
    margin-bottom: 40px;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
}

.Form input:focus,.Form textarea:focus {
    border-color: #4C80DB;
}
 

.Form input:focus + label,
.Form input:valid + label,
.Form textarea:valid + label,
.Form textarea:focus + label {
    top: 0;
    transform: translateY(0);
    left: 0;
    opacity: 1;
}
  

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #FFF;
    text-align: center;
    background-color: #4C80DB;
    border-radius: .25rem;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-bottom .arrow::before {
    bottom: 0;
    border-width: 0 .4rem .4rem;
    border-bottom-color: #4C80DB;
}

.section_header{
	margin-bottom: 50px;
}

.section_header .section-title{
	font-size: 30px;
    color: #000;
    letter-spacing: 1.7px;
}

.section_header .header_line {
    text-align: center;
}
.section_header .header_line img{                     
    width: 200px;
    height: auto;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
}

/* card_Product */
.card_Product {
    height: 280px;
    width: 100%;
    border: 1px solid #dedbdb;
    margin-bottom: 30px;
    transition: border-color 0.2s;
}

.card_Product a {
    text-decoration: none;
    outline: none;
}

.card_Product .slider_img {
    width: 100%;
    height: 220px;
}

.card_Product .title {
    text-align: center;
    padding: 10px;
    margin-top: 7px;
}

.card_Product .title h5 {
    color: #000;
    font-size: 18px;
    transition: color 0.2s;
}


.card_Product:hover {
    border-color: #FFF;
}

.card_Product:hover h5 {
    color: #FFF;
}

.itemundercaro .row {
    margin-left: 15px;
    margin-right: 15px;
}
.itemundercaro:focus {
    outline: none
}

.itemscroll {
    background-color: none;
}

.slick-prev:before, .slick-next:before {
    font-size: 14px;
    opacity: 1;
    color: #969696;
    padding: 6px 7px;
    background-color: #e6e5e5;
    transition: all 0.2s ease-out;
}

.slick-prev:hover::before,.slick-next:hover::before {
    color: #FFF;
    background-color: #4C80DB;
    transition: all 0.2s ease-in; 
}

.slick-prev {
    left: -32px;
}
   
.slick-next {
    right: -30px;
}

.slick-prev:before {
    content: "";
    font-family: 'FontAwesome';
  }
  
.slick-next:before {
    content: "";
    font-family: 'FontAwesome';
}

.slick-dots li button:before {
    font-size: 30px;
    opacity: 1;
    color: #c7c7c7;
}

.slick-dots li.slick-active button:before {
    color: #4C80DB;
    opacity: 1;
}

.slick-dots li {
    width: 10px;
}


/* card_Product */
.Product {
    height: 295px;
    width: 100%;
    background-color: #FFF;
    border: 1px solid #dedbdb;
    margin-bottom: 30px;
    transition: all 0.2s ease-out;
    position: relative;
}

.Product a {
    text-decoration: none;
    outline: none;
}

.Product .product_img img {
    width: 100%;
    height: 220px;
}

.Product .fa-star {
    position: absolute;
    right: 5%;
    top: 5%;
    font-size: 22px;
    color: #BBBBBB;
    cursor: pointer;
    text-shadow: 0px 4px 10px rgba(179, 179, 179, 0.26);
}


.Product .product_img .fa-bars {
    position: absolute;
    right: 5%;
    top: 5%;
    padding: 3px 4px;
    font-size: 18px;
    color: #FFF;
    background-color: #000;
    border-radius: 3px;
    cursor: pointer;
}


.Product i.active {
    color: #4C80DB;
}

.Product .Product_contnent {
    padding: 10px;
    overflow: hidden;
}

.Product .Product_contnent .title {
    width: 60%;
    float: left;
}


.Product ::-webkit-scrollbar {
    width: 0px;
    background: transparent; 
}

.Product .Product_contnent .title h5 {
    color: #000;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.4;
}

.Product .Product_contnent .price {
    width: 40%;
    float: left;
    text-align: right;
    margin-top: 1px;
}

.Product .Product_contnent .price span {
    color: #4C80DB;
}

.Product:hover {
    border: none;
    transform: scale(1.1);
    box-shadow: 0px 2px 10px #0000002e;
    transition: all 0.2s ease-in;
}

/* Header */
header {
    background-color: #FFF;
    color: #000;
    /* width: 90%; */
    position: fixed;
    z-index: 555;
    /* top: 5%;
    left: 5%; */
    top: 0;
    width: 100%;
    box-shadow: 0px 2px 9px #5d5d5d45;
    transition: width 0.5s,top 0.5s,left 0.5s;
}

header .logo {
    text-align: left;
    width: 20%;
    float: left;
    padding: 10px;
    padding-left: 20px;
    position: relative;
}

header .LanguageBtn {
    background: none;
    border: none;
    position: absolute;
    right: 65px; 
    top: 24px;
    outline: none;
    cursor: pointer;
    font-family:'Cairo', sans-serif;
}

header .logo img {
    width: 90px;
    height: 80px;
}

header nav {
    width: 50%;
    float: left;
    padding: 10px;
}

header img.icon,header nav img.icon_close{  
    width: 20px;
    height: 20px;                     
    position: absolute;
    right: 20px;
    top: 27px;
    cursor: pointer;
    z-index: 10;
    display: none; 
    transition: all 0.2s ease-out;
}

header nav .fa-2x {
    font-size: 24px;
}

header nav i.icon:hover {
    color: #4C80DB;
    transition: all 0.2s ease-in;
}

header  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


header  nav ul li {
    float: left;
    margin: 0 15px;
}


/* DropDwon */
header nav ul li.dropdown a:hover:not(.active) {
    color: #4C80DB;
}

header nav ul li.dropdown a:active,header nav ul li.dropdown a:focus {
    outline: none;
    background-color: transparent;
    
}

.dropdown-menu {
    border: none;
    box-shadow: 1px 2px 10px #0000001a;
}

.dropdown-menu li {
    width: 85%;
}

.dropdown-item::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}
.dropdown-item {
    padding: 10px 2px;
    width: 90%;
    overflow: auto;
}

.dropdown-item:hover {
    background-color: #FFF;
}

.dropdown-submenu {
    position: relative;
  }
  
.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 18px;
}
  
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

.dropdown-item:active {
    background-color: #DDD;
}



header  nav ul li a {
    display: block;
    text-align: center;
    padding: 28px 0 21px;
    color: #000;
    font-weight: 600;
    transition: all 0.2s ease-out;
}

header  nav ul li a.active {
    text-decoration: none;
    color: #4C80DB;
}
  
header  nav ul li a:hover {
    color: #4C80DB;
    text-decoration: none;
    transition: all 0.2s ease-in;
}


header .icons {
    width: 30%;
    float: left;
    position: relative;
    padding: 10px;
    padding-right: 20px;
    margin-top: 30px;
}

header .icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 10px;
}

header .icons ul li {
    float: left;
    width: 20%;
    text-align: center;
    position: relative;
    cursor: pointer;
    line-height: 1;
}

header .icons ul li:nth-of-type(3) {
    width: 40%;
    margin-top: 1px;
}

header .icons .dropdown-menu {
    margin-left: 0;
}
header .icons .dropdown-menu li,
header .icons .dropdown-menu li:nth-of-type(3) {
    width: 90%;
    margin: 0 8px;
    text-align: left;
}
header .icons .dropdown a {
    padding: 28px 0 21px;
}
header .icons .dropdown img,
header .icons .dropdown-menu li img {
    width: 17px; 
    height: 15px;
    margin-right: 5px;
}

header .icons .dropdown-menu li .dropdown-item {
    width: 100%;
    padding: 13px 15px;
}

.select {
    position: relative;
    display: inline-block;
    width: 100%;
}
.select select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 2px;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 20px;
    outline: none;
    border: 0;
    border-radius: 0;
    background: #FFF;
    color: #707070;
    border-radius: 3px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select select::-ms-expand {
    display: none;
}
.select select:hover {
    color: #FFF;
    background: #4C80DB;
}
.select select:disabled {
    opacity: 0.5;
    pointer-events: none;
}
.select__arrow {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #7b7b7b transparent transparent transparent;
}
.select select:hover ~ .select__arrow {
    border-top-color: #FFF;
}
.select select:disabled ~ .select__arrow {
    border-top-color: #ccc;
}

/* .custom-select {
    width: 75px;
    height: 35px;
    padding: 5px;
    border: none;
    background: transparent;
    position: relative;
    border-radius: 0;
}

.custom-select select {
    border: none;
    box-shadow: none;
    outline: none;
    font-size: 16px;
    font-weight:600; 
    width: 100%;
    height: 100%;
    top: -8px;
    color: #707070;
    background: transparent;
    position: relative;
    z-index: 2;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.custom-select:after {
    content: "⌵";
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    line-height: 20px;
    text-align: center;
    top: -3px;
    right: 10px;
    font-size: 18px;
    color: #707070;
    z-index: 1;
}  */

header .icons ul li a {
    text-decoration: none;
    color: #000;
    transition: all 0.2s ease-out;
}



header .icons ul li i {
    display: block;
    color: #707070;
    font-size: 18px;
}

header .icons ul li a:hover,
header .icons ul li i:hover{
    color: #4C80DB;
    transition: all 0.2s ease-in;
}


/* Swiper */
.swiper-container {
    width: 100%;
    height: 550px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 105vw;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-white .swiper-pagination-bullet-active{
    background: #4C80DB;
    border-color: #4C80DB;
} 

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
    outline: none;
    box-shadow: none;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #FFF;
    border: 2px solid #FFF;
    outline: none;
    opacity: 1;
}

.contentSlider {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #FFF;
    width: 40%;
    text-align: center;
    z-index: 3;
}

.contentSlider h1 {
    margin-bottom: 10px;
    font-size: 50px;
    font-weight: bold;
    font-family: 'Segoe Print';
}

/* Products_Categories */
#Products_Categories {
    margin: 40px 0;
}

/* Services */
#Services {
    margin: 40px 0;
}

#Services .services_content .contentDesc {
    width: 80%;
    margin-bottom: 30px;
}


#Services .services_content .content_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#Services .services_content .content_list ul li {
    width: 100%;
    margin-bottom: 30px;
}

#Services .services_content .content_list ul li a {
    text-decoration: none;
    outline: none;
    color: #4D4D4D;
    transition: all 0.2s ease-out;
}

#Services .services_content .content_list ul li a span img {
    width: 70px;
    height: 70px;
    margin-right: 20px;
}

/* #Services .services_content .content_list ul li a i {
    font-size: 30px;
    padding: 10px;
    padding-top: 12px;
    vertical-align: bottom;
    background-color: #EEEEEE;
    border: 1px solid #4C80DB;
    color: #4C80DB;
    border-radius: 150px;
    width: 60px;
    height: 60px;
    text-align: center;
    margin-right: 30px;
    transition: all 0.2s ease-out;
} */

#Services .services_content .content_list ul li a:hover {
    color: #4C80DB;
    transition: all 0.2s ease-in;
}

/* #Services .services_content .content_list ul li a:hover i {
    border-color: #4C80DB;
    background-color: #4C80DB;
    color: #FFF;
    transition: all 0.2s ease-in;
} */

#Services .services_content .content_list ul li span {
    display: inline-block;
    width: 60%;
    font-size: 18px;
}


#Services .service_img img {
    width: 100%;
    height: 450px;
}


#Services .buttons {
    text-align: center;
    margin: 50px 0;
}

#Services .buttons .MoreBtn{
    border: 2px solid #4C80DB;
    padding: 5px;
    width: 100px;
    color: #4C80DB;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: color 0.2s;
}

#Services .buttons .MoreBtn:hover {
    color: #FFF;
}

/* Products */
#Products {
    margin: 40px 0;
}

#Products .buttons {
    text-align: center;
    margin: 30px 0;
    margin-bottom: 50px;
}

#Products .buttons .MoreBtn{
    border: 2px solid #4C80DB;
    padding: 5px;
    width: 100px;
    color: #4C80DB;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: color 0.2s;
}

#Products .buttons .MoreBtn:hover {
    color: #FFF;
}

/* Footer */
.footer {
    padding: 30px 0;
    padding-bottom: 50px;
    width: 100%;
    background-color: #4C80DB;
    border: 0;
}

.footer_list li a:hover {
    color: #DDD;
}

.title-widget {
    color: #FFF;
    font-size: 18px;
    line-height: 1;
    position: relative;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 30px;
    margin-left: 0;
}

.list-unstyled {
    margin: 0;
    padding: 0;
}

.widget_nav_menu img {
    width: 140px;
    height: 120px;
    margin-top: 35px;
    margin-bottom: 10px;
}


.widget_nav_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.widget_nav_menu ul li {
    font-size: 14px;
    line-height: 20px;
	position: relative;
    margin-bottom: 7px;
    padding-bottom: 7px;
    width:100%;
    color: #FFF;
}

#Download {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 15px;
}

#Download:last-of-type {
    margin-right: 0px;
}

#Download img {
    width: 180px;
    height: 55px;
    opacity: 1;
}

#Download img:hover {
    opacity: 0.8;
}

.widget_nav_menu ul li a {
    color: #FFF;
    text-decoration: none;
}

.widget_nav_menu ul li a .location {
    margin-left: 35px;
}


.widget_nav_menu ul li a i {
    margin-right: 10px;
    font-size: 20px;
}

.footer_Marker {
    float: left;
}

.widget_nav_menu p {
    margin-top: 10px;
}


.footer-bottom {
    width: 100%;
    border-top: 1px solid #ffffff40;
    background-color: #4C80DB;
    min-height: 30px;
    width: 100%;
}


.language {
    color: #FFF;
    margin-top: 10px;
}

.copyright {
    color: #FFF;
    text-align: right;
    margin-top: 10px;
}

.copyright p ,.language p{
    font-size: 14px;
}

.copyright p img {
    width: 40px;
    height: 20px;
}
  

.social {
    text-align: center;
    margin-bottom: 40px;
}

.social  ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social ul li{
    display: inline-block;
    padding: 10px;
    margin-right: 10px;
}

.social ul li a {
    color: #FFF;
    text-decoration: none;
}

.social ul li a i {
    text-align: center;
    font-size: 25px;
    background-color: transparent;
    padding: 10px;
    width: 44px;
    border-radius: 150px;
    transition: all 0.2s;
}

.social ul li a i:hover {
    color:#4C80DB;
    background-color: #FFF;
}


.footer-bottom .paymentCards {
    text-align: center;
}

.footer-bottom .paymentCards  ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom .paymentCards ul li{
    display: inline-block;
    padding: 10px;
    margin-right: 10px;
}

.footer-bottom .paymentCards li a {
    text-decoration: none;
}

.footer-bottom .paymentCards li a img {
    width: 35px;
    height: 20px;
}



/***** Start Scroll To Top *****/
.scroll_top {
	width: 40px;
	height: 40px;
	color: #FFF;
	background-color: #4C80DB;
	text-align: center;
	position: fixed;
	right: 15px;
	bottom: 10px;
	display: none;
	cursor: pointer;
    border-radius: 100px;
    box-shadow: 0 2px 15px #0000004d;
}

.scroll_top i{
	position: absolute;
	top: 10px;
    right: 13px;
    transition: all 0.2s ease-out;
}

.scroll_top:hover{
	background-color: #000;
	color: #FFF;
	transition: all 0.2s ease-in;
}

.formobile {
    display: none;
}

.formobile .Arabic {
    font-family: 'Cairo', sans-serif;
}

.formobile a i {
    margin-right: 5px;
}

.formobile .dropdown-menu {
    margin-left: 0;
    transform: translate3d(-5px, 66px, 0px) !important;
}
.formobile .dropdown-menu li,
.formobile .dropdown-menu li:nth-of-type(3) {
    width: 90%;
    margin: 0 8px;
    text-align: left;
}
.formobile .dropdown a {
    padding: 28px 0 21px;
}

.formobile.dropdown img,
.formobile .dropdown-menu li img {
    width: 17px; 
    height: 15px;
    margin-right: 5px;
}

.formobile .dropdown-menu li .dropdown-item {
    width: 100%;
    padding: 13px 15px;
}


/**************/
/* About Page */
/**************/
#About {
    margin: 40px 0;
}

#About .About_img img {
    width: 100%;
    height: 350px;
}

/********************/
/* Add Product Page */
/********************/
#Add_Product {
    margin: 40px 0;
}

#Add_Product .Form {
    padding: 30px;
    width: 800px;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

#Add_Product .Form .photo {
    width: 130px;
    margin: auto;
    margin-bottom: 30px;
    position: relative;
}
#Add_Product .Form .photo img {
    width: 130px;
    height: 130px;
    border-radius: 5px;
    cursor: pointer;
}

#Add_Product .photo #upload {
    display: inline-block;
    position: absolute;
    z-index: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}


#Add_Product .Form input[type="checkbox"] {
    padding: 0;
    margin: 0;
    border: none;
}


#Add_Product .Form .form-check {
    text-align: left;
}

#Add_Product .Form .formButtom {
    margin-top: 40px;
}

#Add_Product .Form .formButtom .cost {
    float: left;
    width: 50%;
    text-align: left;
}


#Add_Product .Form .formButtom .cost span {
    color:#4C80DB;
    font-weight: 600;
    font-size: 18px; 
}

#Add_Product .Form .formButtom .AddButton {
    float: right;
    width: 50%;
    text-align: right;
}

#Add_Product .Form .formButtom .AddButton .add_btn {
    background: #4C80DB;
    border: none;
    padding: 7px;
    width: 150px;
    border-radius: 0px;
    color: #FFF;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

#Add_Product .Form .formButtom .AddButton .add_btn:hover {
    background-color: #000;
    transition: all 0.2s ease-in;
}

#Add_Product .Form .select {
    position: relative;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
}
#Add_Product .Form .select select {
    box-shadow: none;
    display: inline-block;
    width: 100%;
    cursor: pointer;
    font-weight:unset;
    padding: 2px;
    opacity: 0.6;
    padding-left: 0px;
    padding-right: 20px;
    outline: none;
    border: 0;
    border-radius: 0;
    background: #FFF;
    color: #949494;
    border-radius: 3px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
#Add_Product .Form .select select::-ms-expand {
    display: none;
}

#Add_Product .Form .select select:valid ~ .select__arrow,
#Add_Product .Form .select select:valid {
    color: #000;
    opacity: 1;
}

#Add_Product .Form .select select:hover {
    background-color: #e8e8e8;
    color: #000;
}

#Add_Product .Form .select select:disabled {
    opacity: 0.5;
    pointer-events: none;
}
#Add_Product .Form .select__arrow {
    position: absolute;
    top: 15px;
    right: 7px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    opacity: 0.5;
    border-color: #7b7b7b transparent transparent transparent;
}
#Add_Product .Form .select select:disabled ~ .select__arrow {
    border-top-color: #ccc;
}

.switch_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    height:40px;
    position: relative;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: left;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

/* Switch 1 Specific Styles Start */
input[type="checkbox"].switch_1{
	font-size: 20px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	width: 60px;
	height: 30px;
    background: #ddd;
	border-radius: 8px;
    position: absolute;
    right: 0;
	cursor: pointer;
    outline: none;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  }
  
  input[type="checkbox"].switch_1:checked{
	background: #4C80DB;
  }
  
  input[type="checkbox"].switch_1:after{
	position: absolute;
	content: "";
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	background: #fff;
	-webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
	        box-shadow: 0 0 .25em rgba(0,0,0,.3);
	-webkit-transform: scale(.7);
	        transform: scale(.7);
	left: 0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  }
  
  input[type="checkbox"].switch_1:checked:after{
	left: calc(100% - 1.5em);
  }
    
  #Alternative_number {
      display: none;
  }

  input[type="checkbox"].switch_whats{
	font-size: 20px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	width: 60px;
    height: 30px;
    position: absolute;
    right: 0;
	background: #ddd;
	border-radius: 8px;
	cursor: pointer;
    outline: none;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  }
  
  input[type="checkbox"].switch_whats:checked{
	background: #4C80DB;
  }
  
  input[type="checkbox"].switch_whats:after{
	position: absolute;
	content: "";
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	background: #fff;
	-webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
	        box-shadow: 0 0 .25em rgba(0,0,0,.3);
	-webkit-transform: scale(.7);
	        transform: scale(.7);
	left: 0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  }
  
  input[type="checkbox"].switch_whats:checked:after{
	left: calc(100% - 1.5em);
  }


  #Add_Product .Form .MyLabel {
    display: block;
    position: relative;
    pointer-events: auto;
    padding-left: 30px;
    left: 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    opacity: 1;
}

#Add_Product .Form .MyLabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
#Add_Product .Form .MyLabel .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #d2d2d2;
}
  
  
  #Add_Product .Form .MyLabel input:checked ~ .checkmark {
    background-color: #4C80DB;
  }
  
  #Add_Product .Form .MyLabel .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  #Add_Product .Form .MyLabel input:checked ~ .checkmark:after {
    display: block;
  }
  
  #Add_Product .Form .MyLabel .checkmark:after {
    left: 7px;
    top: 2px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

/**************/
/* Contact Page */
/**************/
#Contact {
    margin: 40px 0;
}

#Contact .getintouch h5 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

#Contact .getintouch p {
    width: 70%;
}

#Contact .contacts {
    margin-top: 50px;
    width: 70%;
    margin-bottom: 20px;
}

#Contact .contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


#Contact .contacts ul li {
    font-size: 14px;
    line-height: 20px;
	position: relative;
    margin-bottom: 7px;
    padding-bottom: 7px;
    width:100%;
    color: #000;
}

#Contact .contacts ul li a {
    color: #000;
    text-decoration: none;
}

#Contact .contacts ul li a:hover {
    color: #4C80DB;
}

#Contact .contacts ul li a .location {
    margin-left: 35px;
}


#Contact .contacts ul li a i {
    margin-right: 10px;
    font-size: 20px;
}


#Contact .Form {
    background-color: #f8f8f8;
    padding: 50px;
    width: 100%;
    margin: auto;
    overflow: hidden;
}



#Contact .Form .SendButton {
    text-align: right;
}

#Contact .Form .SendButton .send_btn {
    background: #4C80DB;
    border: none;
    padding: 7px;
    width: 150px;
    border-radius: 0px;
    color: #FFF;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

#Contact .Form .SendButton .send_btn:hover {
    background-color: #000;
    transition: all 0.2s ease-in;
} 


/**************/
/* Login Page */
/**************/
#Login {
    margin: 40px 0;
}

#Login .Form {
    background-color: #f8f8f8;
    padding: 50px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

#Login .Form .forgetPass {
    text-align: center;
}

#Login .Form .forgetPass a {
    text-decoration: none;
    outline: none;
}

#Login .Form .forgetPass label {
    color: #4e4e4e;
    cursor: pointer;
    font-weight: 400;
    pointer-events: auto;
    position: relative;
    left: 0;
    margin-bottom: 10px;
    opacity: 1;
}

#Login .Form .forgetPass label:hover {
    color: #4C80DB;
}

#Login .Form .LoginButton {
    text-align: right;
}

#Login .Form .LoginButton .login_btn {
    background: #4C80DB;
    border: none;
    padding: 7px;
    width: 150px;
    border-radius: 0px;
    color: #FFF;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

#Login .Form .LoginButton .login_btn:hover {
    background-color: #000;
    transition: all 0.2s ease-in;
}

#Login .createAccont {
    background-color: #f8f8f8;
    padding: 50px;
    width: 100%;
    overflow: hidden;
}

#Login .createAccont span {
    font-weight: 500;
    color: #000;
    font-size: 22px;
    display: inline-block;
    margin-bottom: 20px;
}

#Login .createAccont p {
    color: #686868;
    margin-bottom: 20px;
}

#Login .createAccont .AccountButton {
    text-align: right;
}

#Login .createAccont .AccountButton .createAccount_btn {
    background-color: #4C80DB;
    width: 200px;
    border-radius: 0px;
    outline: none;
    color: #FFF;
    transition: all 0.2s ease-out;
}

#Login .createAccont .AccountButton .createAccount_btn:hover {
    background-color: #000;
    transition: all 0.2s ease-in;
}

/************************/
/* Services_Section Page */
/***********************/
#Services_Section {
    margin: 40px 0;
}

#Services_Section .service {
    padding: 10px;
    text-align:center;
    border: 1px solid #e8e8e8;
    margin-bottom: 30px;
}

#Services_Section .service a {
    text-decoration: none;
    outline: none;
}

#Services_Section .service .icon {
    width: 50%;
    margin: auto;
    margin-bottom: 30px;
}

#Services_Section .service i {
    font-size: 50px;
    color: #4C80DB;
    transition: color 0.2s;
}

#Services_Section .service p {
    width: 60%;
    margin: auto;
    font-size: 16px;
    color: #5B5B5B;
    transition: color 0.2s;
}

#Services_Section .service:hover i,
#Services_Section .service:hover p {
    color: #FFF;
}


/************************/
/* Add_Followers Page */
/***********************/
#Add_Followers {
    margin: 40px 0;
}

#Add_Followers .increaseFollowers {
    margin-bottom: 20px;
}

#Add_Followers .increaseFollowers span {
    color: #4C80DB;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 40px;
}

#Add_Followers .increaseFollowers p {
    height: 180px;
    overflow: scroll;
    overflow-x: hidden;
    padding: 5px 0;
}

#Add_Followers .increaseFollowers p::-webkit-scrollbar {
    width: 0px;
    background: transparent; 
}

#Add_Followers .increaseFollowers .price {
    margin-bottom: 25px;
}

#Add_Followers .increaseFollowers .price h5 {
    color: #4C80DB;
    font-weight: 600;
    font-size: 20px;
}

#Add_Followers .increaseFollowers .PayButton .PayBtn {
    background: #4C80DB;
    border: none;
    padding: 7px;
    width: 100%;
    border-radius: 0px;
    color: #FFF;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

#Add_Followers .increaseFollowers .PayButton .PayBtn:hover {
    background-color: #000;
    transition: all 0.2s ease-in;
}

#Add_Followers .AddFollowers_img {
    width: 70%;
    margin: auto;
    margin-right: 0;
}

#Add_Followers .AddFollowers_img img {
    width: 100%;
    height: 350px;
}


/************************/
/* Register Page */
/***********************/
#Register {
    margin: 40px 0;
}

#Register .Form {
    background-color: #f8f8f8;
    padding: 50px;
    width: 800px;
    margin: auto;
    overflow: hidden;
    margin-bottom: 20px;
}

#Register .profile_User {
    width: 120px;
    margin: auto;
    margin-bottom: 40px;
    position: relative;
}

#Register .profile_User .Edit_icon i {
    position: absolute;
    top: 2%;
    right: 7%;
    color: #FFF;
    text-align: center;
    font-size: 10px;
    margin: auto;
    border: 1px solid #4C80DB;
    border-radius: 150px;
    padding: 5px;
    background: #4C80DB;
}

#Register .profile_User .Edit_icon img {
    width: 120px;
    height: 120px;
    border-radius: 150px;
}
#Register .profile_User .Edit_icon .upload-box {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

#Register .profile_User .Edit_icon a {
    color: #FFF;
}

#Register .Form .MyLabel {
    display: block;
    position: relative;
    pointer-events: auto;
    padding-left: 30px;
    left: 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    opacity: 1;
}

#Register .Form .MyLabel a {
    text-decoration: none;
    outline: none;
}

#Register .Form .MyLabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
#Register .Form .MyLabel .checkmark {
    position: absolute;
    top: 0;
    left: 30%;
    height: 20px;
    width: 20px;
    background-color: #d2d2d2;
}
  
  
  #Register .Form .MyLabel input:checked ~ .checkmark {
    background-color: #4C80DB;
  }
  
  #Register .Form .MyLabel .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  #Register .Form .MyLabel input:checked ~ .checkmark:after {
    display: block;
  }
  
  #Register .Form .MyLabel .checkmark:after {
    left: 7px;
    top: 2px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #Register .Form .RegisterButton {
      text-align: right;
  }

  #Register .Form .RegisterButton .register_btn {
    background: #4C80DB;
    border: none;
    padding: 7px;
    width: 150px;
    border-radius: 0px;
    color: #FFF;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

#Register .Form .RegisterButton .register_btn:hover {
    background-color: #000;
}

/************************/
/* Edit_Profile Page */
/***********************/
#Edit_Profile {
    margin: 40px 0;
}

#Edit_Profile .Form {
    padding: 30px;
    width: 800px;
    margin: auto;
    overflow: hidden;
}

#Edit_Profile .Form input::placeholder {
    color: #000;
}

#Edit_Profile .Form .col-md-6 {
    padding-left: 0;
}

#Edit_Profile .profile_User {
    width: 120px;
    margin: auto;
    margin-bottom: 40px;
    position: relative;
}

#Edit_Profile .profile_User .Edit_icon i {
    position: absolute;
    top: 2%;
    right: 7%;
    color: #FFF;
    text-align: center;
    font-size: 10px;
    margin: auto;
    border: 1px solid #4C80DB;
    border-radius: 150px;
    padding: 5px;
    background: #4C80DB;
}

#Edit_Profile .profile_User .Edit_icon img {
    width: 120px;
    height: 120px;
    border-radius: 150px;
}
#Edit_Profile .profile_User .Edit_icon .upload-box {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

#Edit_Profile .profile_User .Edit_icon a {
color: #FFF;
}


#Edit_Profile .Form .SaveButton {
    text-align: right;
}

#Edit_Profile .Form .SaveButton .save_btn {
  background: #4C80DB;
  border: none;
  padding: 7px;
  width: 150px;
  border-radius: 0px;
  color: #FFF;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

#Edit_Profile .Form .SaveButton .save_btn:hover {
  background-color: #000;
}

/************************/
/* Favourite Page */
/***********************/
#Favourite {
    margin: 40px 0;
}


#Favourite .buttons {
    text-align: center;
    margin: 30px 0;
    margin-bottom: 50px;
}

#Favourite .buttons .MoreBtn{
    background: linear-gradient(to right, #4C80DB 50%, white 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    border: 2px solid #4C80DB;
    padding: 5px;
    width: 100px;
    color: #4C80DB;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

#Favourite .buttons .MoreBtn:hover {
    background-position: left bottom;
    color: #FFF;
    transition: all 0.2s ease-in;
}

.FavProduct {
    display: none;
}

/************************/
/* Favourite Page */
/***********************/
#Ads {
    margin: 40px 0;
}

#Ads .buttons {
    text-align: center;
    margin: 30px 0;
    margin-bottom: 50px;
}

#Ads .buttons .MoreBtn{
    background: linear-gradient(to right, #4C80DB 50%, white 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    border: 2px solid #4C80DB;
    padding: 5px;
    width: 100px;
    color: #4C80DB;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

#Ads .buttons .MoreBtn:hover {
    background-position: left bottom;
    color: #FFF;
    transition: all 0.2s ease-in;
}

.AdsProduct {
    display: none;
}


/************************/
/* Chat Page */
/***********************/
#Chat {
    margin: 40px 0;
}

#Chat .card{
    height: 632px;
    border: none;
    background-color: #F3F3F3;
    border-radius: 0;
    margin-bottom: 20px;
}
#Chat .contacts_body{
    padding: 0px;
    height: 632px;
    overflow-y: auto;
    white-space: nowrap;
    background-color: #f7f7f7;
}

#Chat .contacts_body::-webkit-scrollbar,
#Chat .msg_card_body::-webkit-scrollbar {
    width: 0px;
    background: transparent; 
}
#Chat .msg_card_body{
    overflow-y: auto;
}

#Chat .card-header{
    background-color: #e3e5ea;
    border-bottom: 1px solid #b9b9b9;
}
#Chat .card-footer{
    padding-top: 0;
    background-color: #F3F3F3;
    border-top: 0 !important;
}
#Chat .type_msg{    
    background-color: #FFF;
    border: 1px solid#DDD;
    resize: none;
    box-shadow: none;
    outline: none;
    color:#000 !important;
    height: 100px !important;
    overflow-y: auto;
    transition: all 0.2s ease-in-out;
}
#Chat .type_msg:focus{
    box-shadow:none !important;
    outline:0px !important;
    border-color: #4C80DB;
}

#Chat .contacts{
    list-style: none;
    padding: 0;
    margin: 0;
}
#Chat .contacts li{
    width: 100% !important;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
#Chat .contacts li:last-of-type {
    margin-bottom: 0;
}

#Chat .contacts li:hover {
    background-color: #4C80DB;
}
#Chat .contacts li.active{
    background-color: #4C80DB;
}

#Chat .contacts li:hover .user_info span,
#Chat .contacts li.active .user_info span{
    color: #FFF;
}


#Chat .contacts li.active  .unread_Message span,
#Chat .contacts li:hover  .unread_Message span {
    color: #4C80DB;
    background-color: #FFF;
}

#Chat .user_img{
    height: 50px;
    width: 50px;

}
#Chat .user_img_msg{
    height: 40px;
    width: 40px;
    border:1.5px solid #f5f6fa;

}
#Chat .img_cont{
        position: relative;
        height: 50px;
        width: 50px;
}
#Chat .img_cont_msg{
        height: 40px;
        width: 40px;
}
#Chat .online_icon{
    position: absolute;
    height: 12px;
    width:12px;
    background-color: #4cd137;
    border-radius: 50%;
    bottom: -7%;
    right: 0.4em;
    border:1.5px solid white;
}
#Chat .offline{
    background-color: #c23616 !important;
}

.userMessage {
    position: relative;
}

#Chat .user_info{
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 15px;
}
#Chat .user_info span{
    font-size: 16px;
    color: #000;
}

#Chat .userName span{
    font-weight: 600;
    color: #000;
}

#Chat .unread_Message {
    position: absolute;
    right: 2%;
    top: 25%;
    margin-top: auto;
    margin-bottom: auto;
}

#Chat .unread_Message span {
    padding: 1px 4px;
    color: #FFF;
    background-color: #4C80DB;
    border-radius: 150px;
    display: inline-block;
    height: 18px;
    width: 18px;
    text-align: center;
    font-size: 11px;
    transition: all 0.2s; 
}

/*****************************/
#Chat .msg_cotainer{
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 10px;
    border-radius: 5px;
    background-color: #FFF;
    color: #000;
    font-size: 13px;
    padding: 10px;
    position: relative;
    max-width: 60%;
}
#Chat .msg_cotainer_send {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
    border-radius: 5px;
    background-color: #4C80DB;
    color: #FFF;
    font-size: 13px;
    padding: 10px;
    position: relative;
    max-width: 60%;
}


#Chat .msg_cotainer_send:after {
    content: " ";
    position: absolute;
    right: -8px;
    top: 0px;
    border-top: 15px solid #4C80DB;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: none;
    border-radius: 3px;
}


#Chat .msg_cotainer:after {
    content: " ";
    position: absolute;
    left: -8px;
    top: 0px;
    border-top: 15px solid #FFF;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: none;
    border-radius: 3px;
}

.deleteMessage {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -50px;
    top: -8px;
    color: red;
    font-size: 12px;
    padding: 3px 5px;
    text-align: center;
    border-radius: 100%;
    box-shadow: 1px 1px 5px #00000038;
    background-color: #FFF;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

#Chat .msg_cotainer_send:hover .deleteMessage  {
   opacity: 1;
   visibility: visible;
   left: -10px;
}
/*****************************/

#Chat .msg_time{
    position: absolute;
    left: 8px;
    bottom: -16px;
    color: #757575;
    font-size: 10px;
}
#Chat .msg_time_send{
    position: absolute;
    right: 8px;
    bottom: -16px;
    color: #757575;
    font-size: 10px;
}

#Chat .Send_Button {
    text-align: right;
}

#Chat .Send_Button .sendBtn {
    background: #4C80DB;
    border: none;
    padding: 7px;
    width: 150px;
    border-radius: 0px;
    color: #FFF;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  #Chat .Send_Button .sendBtn:hover {
    background-color: #000;
  }

/************************/
/* ProductCard Page */
/***********************/
#ProductCard {
    margin: 40px 0;
}

#ProductCard .buttons {
    text-align: center;
    margin: 30px 0;
    margin-bottom: 50px;
}

#ProductCard .buttons .MoreBtn{
    background: linear-gradient(to right, #4C80DB 50%, white 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    border: 2px solid #4C80DB;
    padding: 5px;
    width: 100px;
    color: #4C80DB;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

#ProductCard .buttons .MoreBtn:hover {
    background-position: left bottom;
    color: #FFF;
    transition: all 0.2s ease-in;
}

.ProductCard {
    display: none;
}

/************************/
/* ProductDetails Page */
/***********************/
#ProductDetails {
    margin: 40px 0;
}

.flexslider {
    margin: 0 0 20px;
}

.flexslider .slides img {
    height: 350px;
}

#carousel img {
    height: 132px;
    display: block;
    opacity: .5;
    cursor: pointer;
}
#carousel .flex-active-slide img {
    opacity: 1;
    cursor: default;
}

.flex-direction-nav a {
    text-shadow: none;
}

.flex-direction-nav .flex-next {
    right: 5px;
}

.flex-direction-nav .flex-prev {
    left: 5px;
}

.flex-direction-nav a:before {
    font-size: 30px;
    color: #FFF;
    text-shadow: none;
}

.flexslider:hover .flex-direction-nav .flex-next,
.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 1;
}

#ProductDetails .Product_content .title {
    position: relative;
}

#ProductDetails .Product_content .title i {
    position: absolute;
    right: 0;
    top: 13%;
    font-size: 22px;
    color: #BBBBBB;
    cursor: pointer;
    text-shadow: 0px 4px 10px rgba(179, 179, 179, 0.26);
}

#ProductDetails .Product_content .title i.active {
    color: #4C80DB;
}

#ProductDetails .Product_content hr {
    border-top: 2px solid rgba(0,0,0,.1);
    margin-bottom: 0;
}

#ProductDetails .Product_content .date ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#ProductDetails .Product_content .date ul li {
    width: 30%;
    display: inline-block;
}

#ProductDetails .Product_content .date ul li:nth-of-type(2) {
    margin: 0 4%;
    text-align: center;
}

#ProductDetails .Product_content .date ul li:last-of-type {
    text-align: right;
}

#ProductDetails .Product_content .date ul li span {
    font-size: 13px;
    color: #3A3A3A;
}

#ProductDetails .Product_content .price {
    margin: 30px 0;
}

#ProductDetails .Product_content .price span {
    color: #4C80DB;
    font-weight: 600;
    font-size: 20px;
}

#ProductDetails .Product_content .desc {
    width: 80%;
    height: 250px;
    overflow: scroll;
    overflow-x: hidden;
    padding: 5px 0;
}

#ProductDetails .Product_content .desc::-webkit-scrollbar {
    width: 0px;
    background: transparent; 
}

#ProductDetails .Product_content .desc p {
    color: #3A3A3A;
}

#ProductDetails .Product_content .user h5 {
    font-size: 18px;
}

#ProductDetails .Product_content .user h5 img {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    border-radius: 150px;
}

#ProductDetails .Product_content .links {
    margin-top: 10px;
}

#ProductDetails .Product_content .links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#ProductDetails .Product_content .links ul li {
    width: 20%;
    display: inline-block;
}

#ProductDetails .Product_content .links ul li:nth-of-type(2),
#ProductDetails .Product_content .links ul li:nth-of-type(3) {
    margin: 0 4%;
    text-align: center;
}

#ProductDetails .Product_content .links ul li:last-of-type {
    text-align: right;
}

#ProductDetails .Product_content .links ul li a {
    text-decoration: none;
    outline: none;
}

#ProductDetails .Product_content .links ul li a i {
    font-size: 22px;
    padding: 8px 10px;
    background-color: #FFF;
    box-shadow: 0px 2px 10px #0000003b;
    border-radius: 150px;
    transition: all 0.2s ease-in-out;
}

#ProductDetails .Product_content .links ul li a i.fa-phone {
    color: #28a745;
}

#ProductDetails .Product_content .links ul li a i.fa-comment {
    color: #ff4700;
}

#ProductDetails .Product_content .links ul li a i.fa-whatsapp {
    color: #2CB742;
}

#ProductDetails .Product_content .links ul li a i.fa-share-alt {
    color: #8d07d2;
}

#ProductDetails .Product_content .links ul li a i:hover {
    background-color: #4C80DB;
    color: #FFF;
}


/*************************************************************/

/************************/
/* Payment History Page */
/***********************/
#PaymentHistory {
    margin: 40px 0;
}

#PaymentHistory .PaymentContent a {
    text-decoration: none;
    outline: none;
} 

#PaymentHistory .PaymentContent {
    background-color: #fbfbfb;
    border: 2px solid #f1f1f1;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.2s;
}

#PaymentHistory .PaymentContent:hover {
    background-color: #F3F3F3;
    border-color: #f1f1f1;
}

#PaymentHistory .PaymentContent a {
    text-decoration: none;
    outline: none;
}

#PaymentHistory .PaymentContent .date {
    margin-bottom: 10px;
}

#PaymentHistory .PaymentContent .date span {
    color: #828282;
    font-size: 16px;
}

#PaymentHistory .PaymentContent .desc {
    width: 90%;
    margin-bottom: 10px;
}

#PaymentHistory .PaymentContent .desc p {
    font-size: 18px;
    color: #828282;
    margin-bottom: 0;
}


#PaymentHistory .PaymentContent .price {
    text-align: left;
}

#PaymentHistory .PaymentContent .price span {
    color: #4C80DB;
    font-weight: 600;
    font-size: 18px;
}

#PaymentHistory .PaymentContent .status {
    text-align: right;
}

#PaymentHistory .PaymentContent .status span {
    font-weight: 600;
    font-size: 18px;
}

/************************/
/* Payment Details Page */
/***********************/
#PaymentDetails {
    margin: 40px 0;
}

#PaymentDetails .PaymentContent {
    background-color: #fbfbfb;
    border: 2px solid #f1f1f1;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.2s;
}

#PaymentDetails .PaymentContent a {
    text-decoration: none;
    outline: none;
}

#PaymentDetails .PaymentContent .date {
    text-align: left;
    margin-bottom: 10px;
    margin-top: 10px;
}

#PaymentDetails .PaymentContent .date span {
    color: #828282;
    font-size: 16px;
}

#PaymentDetails .PaymentContent .payNowBtn {
    text-align: right;
    margin-bottom: 10px;
}

#PaymentDetails .PaymentContent .payNowBtn button {
    background: #4C80DB;
    border: none;
    padding: 7px;
    width: 100px;
    border-radius: 0px;
    color: #FFF;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

#PaymentDetails .PaymentContent .payNowBtn button:hover {
    background-color: #000;
}

#PaymentDetails .PaymentContent .desc {
    width: 90%;
    margin-bottom: 10px;
}

#PaymentDetails .PaymentContent .desc p {
    font-size: 18px;
    color: #828282;
    margin-bottom: 0;
}

#PaymentDetails .PaymentContent .transactions {
    margin-bottom: 10px;
}

#PaymentDetails .PaymentContent .transactions p {
    margin-bottom: 5px;
    font-size: 16px;
    color: #828282;
}

#PaymentDetails .PaymentContent .transactions p span {
    margin-left: 20px;
}

#PaymentDetails .PaymentContent .price {
    text-align: left;
}

#PaymentDetails .PaymentContent .price span {
    color: #4C80DB;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
}

#PaymentDetails .PaymentContent .price span img {
    width: auto;
    height: 25px;
    margin-right: 10px;
}

#PaymentDetails .PaymentContent .status {
    text-align: right;
}

#PaymentDetails .PaymentContent .status span {
    font-weight: 600;
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    #PaymentHistory .PaymentContent {
        padding: 10px;
    }
    #PaymentHistory .PaymentContent .desc p,
    #PaymentHistory .PaymentContent .date span ,
    #PaymentHistory .PaymentContent .price span ,
    #PaymentHistory .PaymentContent .status span{
        font-size: 14px;
    }
    #PaymentDetails .PaymentContent {
        padding: 10px;
    }
    #PaymentDetails .PaymentContent .desc p,
    #PaymentDetails .PaymentContent .date span ,
    #PaymentDetails .PaymentContent .price span ,
    #PaymentDetails .PaymentContent .status span ,
    #PaymentDetails .PaymentContent .transactions p{
        font-size: 14px;
    }
    #PaymentDetails .PaymentContent .payNowBtn button {
        padding: 5px;
        font-size: 14px;
    }
    #PaymentDetails .PaymentContent .date {
        margin-top: 5px;
    }
    #PaymentDetails .PaymentContent .status{
        text-align: left;
    }
    #PaymentDetails .PaymentContent .price {
        margin-bottom: 10px;
    }
    #PaymentDetails .PaymentContent .price span img {
        height: 20px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 767px) {
    #PaymentHistory .PaymentContent .desc p,
    #PaymentHistory .PaymentContent .date span ,
    #PaymentHistory .PaymentContent .price span ,
    #PaymentHistory .PaymentContent .status span{
        font-size: 16px;
    }
    #PaymentDetails .PaymentContent .desc p,
    #PaymentDetails .PaymentContent .date span ,
    #PaymentDetails .PaymentContent .price span ,
    #PaymentDetails .PaymentContent .status span ,
    #PaymentDetails .PaymentContent .transactions p{
        font-size: 14px;
    }
    #PaymentDetails .PaymentContent .payNowBtn button {
        padding: 5px;
        font-size: 14px;
    }
    #PaymentDetails .PaymentContent .date {
        margin-top: 5px;
    }
    #PaymentDetails .PaymentContent .price span img {
        height: 20px;
    }
}


/******************************************************/



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    body {
        padding-top: 75px;
    }
    .ShareButton div img {
        height: 17px !important;
        width: 15px !important;
    }
    .ShareButton div {
        height: 31px !important;
        width: 30px !important;
        top: 0px !important;
    }
    .flexslider .slides img {
        height: 170px;
    }
    .flex-direction-nav a:before {
        font-size: 18px;
    }
    .flex-direction-nav a {
        width: 15px;
        height: 25px;
    }
    .flex-direction-nav .flex-next,
    .flex-direction-nav .flex-prev {
        top: 55%;
    }
    #carousel img {
        height: 85px;
    }
    .leftBar {
        width: 100%;
    }
    .formobile {
        display: block;
    }  
    .formobile i {
        margin-right: 5px;
    } 
    .formobile .Arabic {
        font-family:'Cairo', sans-serif;
    }
    .dropdown-item {
        width: 100%;
    }
    .dropdown-menu {
        position: relative;
        min-width: 100%;
    }
    .dropdown-menu li {
        width: 100%;
    }
    .dropdown-submenu .dropdown-menu {
        left: 0;
    }
    .custom-select {
        height: 46px;
    }
    .custom-select select,.custom-select:after {
        color: #000;
        right: 2px;
        top: 0px;
    }
    .custom-select:after {
        top: 10px;
    }
    .select {
        width: 23%;
    }
    .select select {
        color: #000;
        padding: 8px 2px;
    }
    .select__arrow {
        top: 17px;
        border-color: #000000 transparent transparent transparent;
    }
    header .logo img {
        width: 70px;
        height: 55px;
    }
    header .logo {
        width: 100%;
        float: none;
    }
    header nav {
        background-color: #f3f2f2;
        width: 80%;
        float: none;
        padding: 0;
        position: absolute;
        top: 0;
        right: 0;
    }
    header nav ul li {
        float: none;
        margin: 0;
        text-align: center;
    }
    header nav ul li a {
        padding: 21px 0 21px;
    }
    header .icons {
        display: none;
    }
    header nav ul {
        display: none;
    }
    header img.icon {
        display: block;
    }
    .contentSlider {
        width: 75%;
        top: 50%;
    }
    .contentSlider h1 {
        font-size: 30px;
    }
    .swiper-container {
        height: 395px;
    }
    #Services .services_content .contentDesc {
        width: 100%;
    }
    #Services .service_img img {
        height: auto;
    }
    #Services .buttons .MoreBtn,#Products .buttons .MoreBtn {
        font-size: 14px;
    }
    #Services .services_content .content_list ul li span {
        width: 100%;
        font-size: 16px;
    }
    .Product,.card_Product,.card_Product .slider_img,.Product .product_img img {
        height: auto;
    }
    .Product:hover {
        transform: none;
    }
    .section_header .section-title {
        font-size: 25px;
    }
    .footer {
        text-align: left;

    }
    .footer-bottom {
        text-align: center;
    }
    .copyright {
        text-align: center;
    }
    .social ul li {
        padding: 7px;
    }
    .social ul li:last-of-type {
        margin-right: 0;
    }
    .title-widget {
        margin-bottom: 20px;
    }
    .widget_nav_menu ul li {
        font-size: 12px;
    }
    .widget_nav_menu img {
        width: 155px;
        height: 150px;
    }
    .section_header {
        margin-bottom: 20px;
    }
    /* About */
    #About .desc p {
        font-size: 12px;
    }
    #About .About_img img {
        height: auto;
    }
    /* Add_Followers */
    #Add_Followers .increaseFollowers span {
        margin-bottom: 20px;
    }
    #Add_Followers .increaseFollowers p {
        height: 120px;
        font-size: 12px;
    }
    #Add_Followers .AddFollowers_img {
        width: 100%;
    }
    #Add_Followers .AddFollowers_img img {
        height: auto;
    }
    #Add_Followers .increaseFollowers .price h5 {
        font-size: 18px;
    }
    /* Add_Product */
    #Add_Product .Form {
        padding: 10px;
        width: 100%;
    }
    #Add_Product .Form .formButtom .cost {
        margin-bottom: 20px;
    }
    #Add_Product .Form .formButtom .AddButton,
    #Add_Product .Form .formButtom .cost {
        float: none;
        width: 100%;
        text-align: center; 
    }
    #Add_Product .Form .formButtom {
        margin-top: 0px;
    }
    /* Contact */
    #Contact .Form {
        padding: 30px;
    }
    #Contact .getintouch {
        padding: 10px;
    }
    #Contact .getintouch p {
        width: 100%;
        font-size: 12px;
    }
    #Contact .contacts {
        margin-top: 20px;
        width: 90%;
        padding: 10px;
    }
    #Contact .contacts ul li {
        font-size: 12px; 
    }
    /* Edit_Profile */
    #Edit_Profile .Form {
        width: 100%;
    }
    /* Login */
    #Login .Form,
    #Login .createAccont {
        padding: 30px;
    }
    #Login .createAccont span {
        font-size: 20px;
    }
    #Login .createAccont p {
        font-size: 12px;
    }
    /* Register */
    #Register .Form {
        width: 100%;
        padding: 30px;
    }
    #Register .Form .MyLabel .checkmark {
        left: 0;
    }
    #Register .Form .MyLabel {
        text-align: left;
    }
    /* ProductDetails */
    #ProductDetails .Product_content .title h4 {
        font-size: 22px;
    }
    #ProductDetails .Product_content .date ul li:nth-of-type(2) {
        margin: 0 3%;
    }
    #ProductDetails .Product_content .date ul li span {
        font-size: 10px;
    }
    #ProductDetails .Product_content .price span {
        font-size: 18px;
    }
    #ProductDetails .Product_content .desc p {
        font-size: 12px;
    }
    #ProductDetails .Product_content .desc {
        width: 90%;
        height: 190px;
    }
    #ProductDetails .Product_content .links ul li:nth-of-type(3) {
        margin: 0 5%;
    }
    #ProductDetails .Product_content .links ul li:nth-of-type(2) {
        margin-right: 0%;
    }
    #ProductDetails .Product_content .user h5 {
        font-size: 16px;
    }
    #ProductDetails .Product_content .links ul li a i {
        font-size: 18px;
        padding: 6px 8px;
    }
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 601px) and (max-width: 767px) {
    header .LanguageBtn {
        top: 36px;
    }
    .leftBar {
        width: 100%;
    }
    .leftBar .Links {
        width: 50%;
        float: left;
    }
    .leftBar .ads {
        width: 40%;
        float: right;
    }
    .leftBar .ads img {
        height: 300px;
    }
    .formobile {
        display: block;
    }  
    .dropdown-item {
        width: 100%;
    }
    .dropdown-menu {
        position: relative;
        min-width: 100%;
    }
    .dropdown-menu li {
        width: 100%;
    }
    .dropdown-submenu .dropdown-menu {
        left: 0;
    }
    .custom-select {
        height: 46px;
    }
    .custom-select select,.custom-select:after {
        color: #000;
        right: 2px;
        top: 0px;
    }
    .custom-select:after {
        top: 10px;
    }
    .select {
        width: 10%;
    }
    .select select {
        color: #000;
        padding: 8px 2px;
    }
    .select__arrow {
        top: 17px;
        border-color: #000000 transparent transparent transparent;
    }
    header .logo {
        width: 100%;
        float: none;
    }
    header nav {
        background-color: #f3f2f2;
        width: 80%;
        float: none;
        padding: 0;
        position: absolute;
        top: 0;
        right: 0;
    }
    header nav ul li {
        float: none;
        margin: 0;
        text-align: center;
    }
    header nav ul li a {
        padding: 21px 0 21px;
    }
    header .icons {
        display: none;
    }
    header nav ul {
        display: none;
    }
    header img.icon {
        display: block;
    }
    header  img.icon, header nav img.icon_close {
        top: 40px;
    }
    .widget_nav_menu ul li {
        font-size: 12px;
    }
    #Services .services_content .content_list ul li span {
        width: 100%;
        font-size: 16px;
    }
    /* About */
    #About .desc p {
        font-size: 13px;
    }
    #About .About_img img {
        height: auto;
    }
    /* Add_Followers */
    #Add_Followers .increaseFollowers span {
        margin-bottom: 20px;
    }
    #Add_Followers .increaseFollowers p {
        height: 96px;
        font-size: 14px;
    }
    #Add_Followers .AddFollowers_img {
        width: 100%;
    }
    #Add_Followers .AddFollowers_img img {
        height: auto;
    }
    #Add_Followers .increaseFollowers .price h5 {
        font-size: 18px;
    }
    /* Add_Product */
    #Add_Product .Form {
        padding: 10px;
        width: 100%;
    }
    #Add_Product .Form .formButtom .cost {
        margin-bottom: 20px;
    }
    #Add_Product .Form .formButtom {
        margin-top: 20px;
    }
    /* Contact */
    #Contact .getintouch {
        padding: 10px;
    }
    #Contact .getintouch p {
        width: 100%;
        font-size: 13px;
    }
    #Contact .contacts {
        margin-top: 20px;
        width: 90%;
        padding: 10px;
    }
    #Contact .contacts ul li {
        font-size: 13px; 
    }
    /* Edit_Profile */
    #Edit_Profile .Form {
        width: 100%;
    }
    /* Login */
    #Login .createAccont p {
        font-size: 13px;
    }
    /* Register */
    #Register .Form {
        width: 100%;
        padding: 30px;
    }
    #Register .Form .MyLabel .checkmark {
        left: 0;
    }
    #Register .Form .MyLabel {
        text-align: left;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px){
    header .LanguageBtn {
        top: 37px;
    }
    .leftBar {
        width: 100%;
    }
    .leftBar .Links {
        padding: 20px;
    }
    .leftBar .Links ul li a span {
        font-size: 12px;
    }
    .leftBar .Links ul li a i {
        font-size: 16px;
        top: 20%;
    }
    .formobile {
        display: block;
    }  
    .dropdown-item {
        width: 100%;
    }
    .dropdown-menu {
        position: relative;
        min-width: 100%;
    }
    .dropdown-menu li {
        width: 100%;
    }
    .dropdown-submenu .dropdown-menu {
        left: 0;
    }
    .custom-select {
        height: 46px;
    }
    .custom-select select,.custom-select:after {
        color: #000;
        right: 2px;
        top: 0px;
    }
    .custom-select:after {
        top: 10px;
    }
    .select {
        width: 10%;
    }
    .select select {
        color: #000;
        padding: 8px 2px;
    }
    .select__arrow {
        top: 17px;
        border-color: #000000 transparent transparent transparent;
    }
    header .logo {
        width: 100%;
        float: none;
    }
    header nav {
        background-color: #f3f2f2;
        width: 80%;
        float: none;
        padding: 0;
        position: absolute;
        top: 0;
        right: 0;
    }
    header nav ul li {
        float: none;
        margin: 0;
        text-align: center;
    }
    header nav ul li a {
        padding: 21px 0 21px;
    }
    header .icons {
        display: none;
    }
    header nav ul {
        display: none;
    }
    header img.icon {
        display: block;
    }
    header img.icon, header nav img.icon_close {
        top: 40px;
    }
    .Product .Product_contnent .price span {
        font-size: 13px;
    }
    .Product .Product_contnent .title {
        margin-top: 4px;
        height: 35px;
    }
    .Product .Product_contnent .title h5 {
        font-size: 15px;
    }
    .Product .product_img img {
        height: 187px;
    }
    .Product {
        height: 250px;
    }
    .widget_nav_menu img {
        width: 155px;
        height: 150px;
    }
    .widget_nav_menu ul li {
        font-size: 11px;
    }
    #Services .service_img img {
        height: 335px;
    }
    #Download img {
        width: 150px;
        height: 45px;
    }
    #Services .services_content .content_list ul li span {
        width: 100%;
        font-size: 16px;
    }
    /* About */
    #About .About_img img {
        height: 310px;
    }
    #About .desc p {
        font-size: 13px;
    }
    /* Add_Followers */
    #Add_Followers .increaseFollowers p {
        height: 138px;
        font-size: 14px;
    }
    #Add_Followers .AddFollowers_img {
        width: 100%;
    }
    #Add_Followers .AddFollowers_img img {
        height: 305px;
    }
    #Add_Followers .increaseFollowers .price h5 {
        font-size: 18px;
    }
    /* Add_Product */
    #Add_Product .Form {
        padding: 10px;
        width: 100%;
    }
    /* Contact */
    #Contact .Form {
        padding: 30px;
    }
    #Contact .getintouch {
        padding: 10px;
    }
    #Contact .getintouch p {
        width: 100%;
        font-size: 13px;
    }
    #Contact .contacts {
        margin-top: 20px;
        width: 90%;
        padding: 10px;
    }
    #Contact .contacts ul li {
        font-size: 13px; 
    }
    /* Edit_Profile */
    #Edit_Profile .Form {
        width: 100%;
    }
    /* Login */
    #Login .createAccont p {
        font-size: 13px;
    }
    /* Register */
    #Register .Form {
        width: 100%;
        padding: 30px;
    }
    #Register .Form .MyLabel .checkmark {
        left: 0;
    }
    #Register .Form .MyLabel {
        text-align: left;
    }
}


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px)and (max-width: 1199px) {
    header nav ul li {
        float: left;
        margin: 0 10px;
    }
    .dropdown-item {
        padding: 10px 15px;
    }
    .select select {
        padding-right: 10px;
    }
    .select__arrow {
        right: 0;
    }
    .Product .Product_contnent .title h5 {
        font-size: 16px;
    }
    .Product .Product_contnent .price span {
        font-size: 14px;
    }
}


