@font-face {
  font-family: 'Droid Arabic Kufi';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/DroidKufi-Regular.eot);
  src: url(../fonts/DroidKufi-Regular.eot?#iefix) format('embedded-opentype'),
       url(../fonts/DroidKufi-Regular.woff2) format('woff2'),
       url(../fonts/DroidKufi-Regular.woff) format('woff'),
       url(../fonts/DroidKufi-Regular.ttf) format('truetype');
}
  /* Reset & General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Droid Arabic Kufi';
  color: #333;
  overflow-x: hidden;
}
		
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #057057;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header .logo {
  font-size: 1.5em;
  font-weight: bold;
}

.logo img{
	border-radius:8px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background-color: white;
    height: 3px;
    width: 25px;
    margin: 3px 0;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: left 0.3s ease;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav nav ul li {
    margin: 15px 0;
}

.mobile-nav nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
}

nav {
  display: none;
}

nav ul {
  list-style: none;
}

nav ul li {
  margin: 10px 0;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
}

main {
  margin-top: 38px;
  padding: 2px;
}

/* Hero Section */
.hero {
  background: #004d40;
  color: white;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  line-height: 1.5;
}

/* Social Icons Section */
.social-icons {
  margin: 40px 0;
}

.social-icons h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.icons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon {
  background: #ffffff;
  color: white;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 120px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.icon i {
  font-size: 3em;
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon p {
  margin-top: 10px;
  font-size: 1em;
  color: #333;
}

/* Icon Colors */
.facebook {
  background: #3b5998;
}

.facebook p{
  color: #fff; 
}

.tiktok {
  background: #000; 
}

.tiktok p{
  color: #fff; 
}

.instagram {
  background: #e1306c;
}

.youtube {
  background: #ff0000;
}

.icon:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.icon:hover i {
  transform: scale(1.2);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .icons-container {
    flex-direction: column;
    align-items: center;
  }

  .icon {
    width: 80%;
  }

  nav {
    background: #004d40;
    position: absolute;
    right: 0;
    top: 60px;
    width: 50%;
    display: none;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 10px 10px;
  }

  nav ul {
    padding: 20px 0;
  }

  nav ul li {
    margin: 10px 0;
  }
}


/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #057057;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.bottom-nav .nav-item {
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  flex: 1;
}

.bottom-nav .nav-item i {
  font-size: 1.5em;
  display: block;
  margin-bottom: 5px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.bottom-nav .nav-item:hover i {
  transform: scale(1.2);
  color: #e0f7fa;
}
.image-section {  
  margin: 30px auto;  
  text-align: center;  
}  

.image-section img {  
  width: 80%;  
  max-width: 500px;  
  border-radius: 10px;  
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);  
  transition: transform 0.3s ease, box-shadow 0.3s ease;  
}  

.image-section img:hover {  
  transform: scale(1.05);  
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);  
}  

.hand{
   cursor: pointer;  /* تظهر اليد عند المرور فوق العنصر */
}


.hidden {
    display: none;
}

.green {
    color: green; /* اللون الأخضر */
}

 
.rtl{
	direction: rtl !important;
	text-align:right;
}

.ltr{
	direction: ltr !important;  
	text-align:left;
}

.language-intro-icon {
    position: absolute; /* تمكين التحكم في الموقع بشكل كامل */
    top: 30px; /* المسافة من الأعلى */
    right: 57px; /* المسافة من اليمين */
    display: flex; /* يجعل العنصر مرنًا */
    justify-content: center; /* توسيط المحتوى أفقياً داخل العنصر */
    align-items: center; /* توسيط المحتوى عموديًا داخل العنصر */
    width: auto; /* الحجم يتغير حسب المحتوى */
    background-color: transparent; /* الخلفية شفافة */
}

.language-intro-icon i {
    color: #fff; /* لون الأيقونة */
    font-size: 24px; /* حجم الأيقونة */
}


.custom-login-container {
	background-color: #f9f9f9;
	border-radius: 8px;
	padding:5px;
	box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
	width: 90%;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.custom-login-message {
	font-size: 20px;
	color: #333;
}

	.joinus{
	margin: 45px 0 5px 0;
	font-size:22px;
	
	}
	
.custom-alert-container {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 90px;
	border: 3px solid #f57c00; /* اللون البرتقالي */
	border-radius: 50%; /* لجعل البوردر دائري */
	margin: 5px 0 5px 0;
	font-size:42px;
	color:#f57c00;
	
}

.custom-alert-container i {
	color: #f57c00;
	font-size: 70px;
}

.custom-buttons-wrapper {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	margin-bottom:10px;
	
}

.custom-register-btn, .custom-login-btn {
	padding: 8px 15px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.custom-register-btn {
	background-color: #f57c00; /* اللون البرتقالي */
	color: white;
}

.custom-login-btn {
	background-color: #28a745; /* اللون الأخضر */
	color: white;
}

.custom-register-btn:hover, .custom-login-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.custom-register-btn i, .custom-login-btn i {
	margin-right: 8px;
}

.top-bar {
	background: #079C8B;
	color: #fff;
}


.nav-tabs .nav-link{
	border-top-right-radius :10px !important;
	border-top-left-radius :10px !important;
}

	.filter-icon,
	.search-icon {
		padding: 5px;
		position: absolute;
		margin-right:5px;
	}

	.filter-icon {
		margin-right:-30px;
		z-index:999;
		left: 5px;
		cursor: pointer;
		top:5px;
	}
	
	
	.filter-icon i{
		
	}
	
	
	
.bg-light {
	cursor: pointer;
}

.input-group-text {
	
}

.nav-item {
	padding-right:-5px !important;
	padding-left:-5px !important;
}

.fixed-bottom-menu {
   justify-content: center;
   text-align: center;
	position: fixed;
	margin-top:65px;
	padding-bottom:15px;
	bottom: 0;
	left: 0;
	background-color: #fff;
	border-radius: 15px 15px 0 0;
	
	z-index:9999;
}

.menu-bottom-item {
	display: inline-block;
	padding: 5px 10px 1px 10px;
	text-align: center;
	justify-content: center;
}

.menu-bottom-icon i {
	color: #FF7A00;
	cursor: pointer;
	font-size: 24px;
}

.menu-bottom-text {
	color: black;
	cursor: pointer;
	 font-size: 12px;
}
.menu-bottom-text a{
	text-decoration:none;
	color:#000;	
	padding:0;
	margin:0;
	font-size: 12px;
}
.menu-bottom-text a:hover{
	text-decoration:none; 
	background-color:#fff;
	color:#000;	
	padding:0;
	margin:0;
}
.contact-payment-icons {
	
}

.contact-payment-icons i {
	font-size:16px;
}

.btn-success {
	background-color:#04c415 !important;
	border-color:#04c415 !important;
	border-radius:12px !important;
	font-size:10px !important;
	padding:10px 6px !important;
	font-family: 'Droid Arabic Kufi';
}

.tagelbottomleftorw {
	padding:0px	!important;

}


.border-warning2{
	border:1px solid #fff !important;
	background-color: #ffffff !important;
}
.btn-warning2 {
	  background-color: #FF7A00 !important;
	color: #fff !important;
}

.bg-white{
		background-color: #fff !important;
}

.footer-payment-icons {
 width:100%;	
	
}

.footer-payment-icons a{
 text-decoration:none;
 padding:1px;
}

.footer-payment-icons i{
	font-size:28px;
	color:#ff751a;
}
		
 .green-link a{
        color: #04C416;
        text-decoration: none; /* لإزالة التأثير الأساسي للرابط */
		font-size:12px;
}

.green-link a:hover {
    text-decoration: none; /* تحتين عند تحويم الفأرة */
	color: #191919;
}
	
.dropdown-item a{
	text-decoration:none;
	color:#000;	
	padding:0;
	margin:0;
}

.form-select{
	 background-image:none !important;
}

.image-container{
	 margin-left:15px;
}

.image-container img{
	border-radius:5px ;
	box-shadow:3px 3px 7px #999;
	border:1px solid #ddd;
}

.image-container img:hover{
	box-shadow:3px 3px 7px #444;
}

.caption2 h1,.caption2 h2,.caption2 h3,.caption2 h4,.caption2 h5,.caption2 h6{
		position: absolute; 
		bottom: 50%;
		font-size:14px !important;
		left: 0; 
		width: 100%; 
		background-color: rgba(0, 0, 0, 0.7); 
		text-align: center; 
		padding: 10px; 
		color: #fff;
}

.caption2 span{
  color: #f27a1a;
  font-size: 14px;
  font-weight: 600;
  text-align: center; 
}

.slidebottunnext{
	font-size:14px;
	margin-left:100%;
	right:-10px;
}
		
.slidebottunprev{
	font-size:14px;
	margin-left:-12px;
}

.hand{
	cursor: pointer;
}

.carthome{
	position:absolute;
	top:1px;
	left:1px;
	background-color:#fff;
	color:#FF7A00;
	padding:3px;
	border-radius:3px 0px 8px 0px;
	cursor:pointer;
}
 
 .proPrice{
 	position:absolute;
	bottom:1px;
	left:1px;
	background-color:#fff;
	color:#FF7A00;
	padding:3px;
	border-radius:3px 0px 8px 0px;
	cursor:pointer;
}
 
 .pricedet{
	 position:relative;
	top:46px;
	right:0px;
	width:100px;
	background-color:#FF7A00 ;
	padding:3px;
	color:#fff;
	border-radius:0px 0px 0px 8px;
}
 
 .blog-post{
	 background-color:#F9F9F9;
     border-radius:0px 20px 0px 20px;
	 padding:10px;
}
 
 .countdet{
	width:100px;
	background-color:#FF7A00 ;
	padding:3px;
	color:#fff;
	border-radius:8px 0px 8px 0px;
}
 
.backbuttonaddtocart {
  background-color: #01986C ; /* لون الخلفية الأساسي */
  transition: background-color 0.3s ease; /* تأثير التحول للون الخلفية */
  padding:6px 8px;
  border-radius:7px;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
}

.backbuttonaddtocart:hover {
  background-color: #FF8500; /* لون الخلفية عند تمرير الماوس */
  color:#eee;
}

.contact-seller-button{
  background-color: #FF7A00 ; /* لون الخلفية الأساسي */
  transition: background-color 0.3s ease; /* تأثير التحول للون الخلفية */
  padding:4px 5px;
  margin:5px;
  border-radius:5px;
  color:#fff;
  text-decoration:none;
  font-size:16px;
}
.contact-seller-button:hover{
  background-color: #01986C; /* لون الخلفية عند تمرير الماوس */
  color:#eee;
}

.sendmsgsellerdet {
  background-color: #3b5998 ; /* لون الخلفية الأساسي */
  transition: background-color 0.3s ease; /* تأثير التحول للون الخلفية */
  padding:4px 5px;
  margin:5px ;
  border-radius:5px;
  color:#fff;
  text-decoration:none;
  font-size:16px;
}

.sendmsgsellerdet:hover {
  background-color: #3b5998; /* لون الخلفية عند تمرير الماوس */
  color:#eee;
}


.copylinkpagedet {
  background-color: #3b5998 ; /* لون الخلفية الأساسي */
  transition: background-color 0.3s ease; /* تأثير التحول للون الخلفية */
  padding:6px 8px;
  margin:6px 8px;
  border-radius:7px;
  color:#fff;
  text-decoration:none;
  font-weight:bold;

}

.copylinkpagedet:hover {
  background-color: #3b5998; /* لون الخلفية عند تمرير الماوس */
  color:#eee;
}

  
.pricing-plan {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 10px;
    text-align: center;
	border-top:3px solid #ffa366;
}

.pricing-plan h2 {
    font-size: 24px;
    color: #333;
}

.pricing-plan p {
    font-size: 16px;
    color: #666;
}

.pricing-plan .price {
    font-size: 28px;
    color: #ff8800;
    margin: 20px 0;
}

.pricing-plan .btn {
    display: inline-block;
    background-color: #ff8800;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.pricing-plan .btn:hover {
    background-color: #ff6600;
}


.btn-primary{
	border:1px solid #fff !important;
}

.cart-count{
    position: absolute;
    top: -10px;
    margin-right:1px;
    background-color: #840000;
    color: white;
    border-radius: 50%;
    padding: 5px;
    font-size: 12px;
}

.button-container {
  text-align: center;
  margin: 10px;
}

.login-button,
.register-button {
  display: inline-block;
  color:#444;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  background-color:#ddd;
  border-radius:10px;
}

/* قواعد CSS للرسالة العائمة */
.floating-message {
  position: fixed; /* يجعل العنصر موقعًا ثابتًا على الشاشة */
  top: 30%; /* يجعل العنصر في منتصف العمود العلوي للشاشة */
  left: 50%; /* يجعل العنصر في منتصف الأفقي للشاشة */
  transform: translate(-50%, -50%); /* يمكن استخدامه لتوسيط العنصر بشكل أفضل */
  padding: 20px;
  background: #ffffff;
  border: 1px solid #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999; /* للتأكد من أنها تظهر فوق أي محتوى آخر */
  display: none; /* لإخفاء الرسالة في البداية */
}


/* أضف تأثير الظهور بواسطة CSS أو قم بذلك باستخدام JavaScript */
.floating-message.show {
  display: block; /* إظهار الرسالة عند الحاجة */
}

.deleteprocart{
	background-color:#900C3F;
	color:#fff;
	padding:4px;
	margin:2px;
	text-decoration:none;
	float:left;
}

.minusbutton{
	background-color:#FFC300;
	color:#fff;
	padding:4px;
	text-decoration:none;
	float:left;
	margin:2px;
}

.plusbutton{
	background-color:#1EAD05;
	color:#fff;
	padding:4px;
	text-decoration:none;
	float:left;
	margin:2px;
}

/* نمط النجاح */
.success {
	position:fixed;
    color: #008000; /* لون النص الخضراء */
    background-color: #C8E6C9; /* لون الخلفية الخضراء */
    border: 1px solid #4CAF50; /* حدود خضراء */
    padding: 10px; /* هامش داخلي */
    border-radius: 5px; /* زاوية دائرية */
	max-width:270px;
	float:left;
	transform: translate(-50%, -50%); /* يمكن استخدامه لتوسيط العنصر بشكل أفضل */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* للتأكد من أنها تظهر فوق أي محتوى آخر */
  
	
}

/* نمط الفشل */
.error {
	position:fixed;
    color: #444; /* لون النص الخضراء */
    background-color: #FF9300; /* لون الخلفية الخضراء */
    border: 1px solid #FF5900; /* حدود خضراء */
    padding: 10px; /* هامش داخلي */
    border-radius: 5px; /* زاوية دائرية */
	max-width:270px;
	float:left;
	transform: translate(-50%, -50%); /* يمكن استخدامه لتوسيط العنصر بشكل أفضل */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* للتأكد من أنها تظهر فوق أي محتوى آخر */
}

 .bg-cap-cat{
	background-color: #fff5e7 ;
	padding-top:2px;
	opacity:1;
	 text-align:right;
	border-bottom:1px dashed #9a9a9a ;
 }
 
.bg-cap-cat .nameandicon {
	font-size:16px; 
    margin-right: 10px;
}

   .category-link { 
    margin-left: 5px;
	float:left;
    cursor: pointer;
	 font-size:12px; 
}
   
   
/* ايقونة الدعم الفني اسفل الموقع */
@keyframes shake {
    0% { transform: translate(0, 0); }
    10%, 30%, 50%, 70%, 90% { transform: translate(-5px, 0); }
    20%, 40%, 60%, 80% { transform: translate(5px, 0); }
    100% { transform: translate(0, 0); }
}

#support-button.shake {
    animation: shake 0.5s;
}

#support-button.shake {
    animation: shake 0.5s;
}

    #support-button {
        position: fixed;
        bottom: 75px;
        color: #00B17B;
        width:30px;
		height:30px;
        cursor: pointer;
		z-index:99;
        transition: transform 0.3s, background-color 0.3s; /* تأثير تحريك وتغيير لون الخلفية عند التحويل */
    }
    #support-button:hover {
        transform: scale(1.1); /* تكبير الزر عند تمرير الماوس عليه */
		color: #00B563;
		padding-right:15px;
    }
    #support-button i {
        font-size: 38px;
        text-align: center;
		border-radius: 50%;
		width:35px;
		height:25px;
		background-color: #fff;
    }
	
	.currectbalanceincart{
	  border: 1px solid #666;
	  outline: #F7F7F7 solid 10px;
	  margin: auto;  
	  padding: 10px;
	  text-align: center;
	  min-width:280px;
		}
		
		
#countdown {
    background-color: #C100FF; /* لون خلفية العداد */
    color: #FFFFFF; /* لون النص */
    padding: 10px; /* هوامش داخلية للعداد */
	border-radius: 25px;
}

.ribbon-warp{
	width:50px;
	height:50px;
	overflow:hidden;
	position:relative;
	left:-30%;
}

.ribbon-warp::before , .ribbon-warp::after{
	content: '';
	width:10px;
	height:10px;
	background:#FF004D;
	position:relative;
	z-index:-1;
}

.ribbon-warp::before{
	top:0px;
	right:0px;
}

.ribbon-warp::after{
    bottom:0px;
	left:0px;
}

.ribbon{
	width:100px;
	font-size:15px;
	margin-top:20px;
	text-align:center;
	padding:8px 0;
	background:#C100FF;
	color:#fff;
	position:absolute;
	transform:rotate(-90deg);
	border-radius:0px 0px 0px 18px;
}

.hidden {
    display: none;
}

.addiconcenterfooter{
  padding:5px;
  border: 3px solid #FF8B00; /* عرض الحدود */
  border-radius: 50%; /* انحناء الحدود */
  background-color: #FF5900;
  width:50px;
  height:50px;
  justify-content: center;
  text-align: center;
  position: relative;
  bottom:8px;
  cursor: pointer;
   /* إضافة ظل بلون رمادي وحجم 5 بكسل في الاتجاهات الأفقية والرأسية */
  box-shadow: 2px 2px 5px #555;
}

.addiconcenterfooter i{
   /*padding-right:4px;*/
   /*padding-left:4px;*/
  margin-top:-2px;
  cursor: pointer;
  color:#fff !important;
  }
  
  
  .dollarsignc{
      background:#183B6D;
	  color:#fff;
      padding:7px 8px 6px;
	  border-radius: 3px; 
	  margin-bottom:1px;
	  border-radius: 3px 5px 5px 3px; 
  }
  
.disabled-button {
  background: #c0c0c0;
  cursor: not-allowed;
  pointer-events: none;
}

.fa-right-left{
      background:#183B6D;
	  color:#fff;
      padding:3px 8px;
	  border-radius: 3px; 
	  font-size:12px;
}


}

/*store*/
.float-right{
	float:right;
}
.symbolclass{
	color:#555;
	font-size:11px;
}
.langclass{
	color:#555;
	font-size:11px;
}

.green, .green::before {
    color: green;
	    content: '\2191'; /* رمز سهم لأعلى Unicode */
    margin-right: 5px; /* مسافة بين الرمز والنص */
}

.red, .red::before {
    color: red;
	 content: '\2193'; /* رمز سهم لأسفل Unicode */
}

 table {
        border-collapse: collapse;
        width: 100%;
		  font-size:14px !important;
    }

    th, td {
        text-align: center !important;
        padding: 2px;
        border-bottom: 1px solid #dddddd; 
    }
	
    table tbody tr {
        text-align: center !important;
        padding: 2px !important;
        border-bottom: 1px solid #dddddd !important;
    }
	.icon-image {
    width: 24px; /* أو أي حجم آخر تفضله */
    height: 24px;
}

thead tr th {
    font-weight: 500;
}

thead tr th:last-child {
    text-align: right;
}

tbody tr th {
    color: #dddddd;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
}

tbody tr td {
    font-family: 'Roboto', sans-serif;
    color: #607d8b;
}

tbody tr td:last-child {
    text-align: right;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    border-top: 1px solid rgba(120, 130, 140, 0.13);
    line-height: 32px;
    vertical-align: top;
}

.table>thead>tr>th {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
    font-weight: 600;
}

.table {
    margin-bottom: 0;
    white-space: nowrap;
}

.table .badge {
    text-transform: uppercase;
}

.student-data-table label {
    margin-right: 7px;
}

.student-data-table td span a {
    padding: 3px;
}

.table td,
.table th {
    border-top: 1px solid rgba(120, 130, 140, 0.13);
    padding: 0.75rem;
    vertical-align: top;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_desc_disabled {
    background: transparent none repeat scroll 0 0;
}

table.dataTable thead .sorting_asc::after {
    content: "";
    cursor: pointer;
    font-family: fontawesome;
    margin-left: 10px;
}

table.dataTable thead .sorting_desc::after {
    content: "";
    cursor: pointer;
    font-family: fontawesome;
    margin-left: 10px;
}

table.dataTable thead .sorting::after {
    color: rgba(50, 50, 50, 0.5);
    content: "";
    cursor: pointer;
    font-family: fontawesome !important;
    margin-left: 10px;
}

.ulflags {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;  
        justify-content: space-between; 
    }

     .ulflags li {
        width:50%;
		font-size:14px;
        text-align: left;
        margin-bottom: 14px;  
		cursor: pointer;
    }
	
	  .ulflags li .flag-icon {
        width: 30px !important;  
        height: 30px !important;  
        border-radius: 50% !important;    
    }
	
	