@font-face { font-family: 'arabp2p'; src: url('fonts/DroidKufi-Regular.ttf'); } /*Droid Arabic Kufi*/
@font-face { font-family: 'Hacen Sahafa'; src: url('fonts/Hacen Sahafa.ttf'); } 
@font-face { font-family: 'Helvetica Neue Arabic'; src: url('fonts/Helvetica Neue Arabic.ttf'); } 
/* ######### Start Main Tracker Body #########0 */
:root {
  color-profile: sRGB;
}

:root {
  --background-color: #6c7e99;
  /* Primary Colors */
  --primary: #03406E;    /* Your logo color (deep navy) */
  --primary-light: #2A5CAA;  /* Brighter blue for accents */
  --primary-dark: #01294B;   /* Darker navy for contrast */

  /* Secondary Colors */
  --secondary: #4ECDC4;    /* Fresh teal for highlights */
  --secondary-dark: #3A9A93; /* Darker teal variant */

  /* Neutrals */
  --white: #E7EFF9;
  --light-gray: #D7E3F0;
  --medium-gray: #ADB5BD;
  --dark-gray: #495057;
  --black: #212529;

  /* Functional Colors */
  --Green: #28A745;      
  --Yellow: #3A9A93;     
  --Red: #DC3545;    
  --link: #0077fc;      
}


/* Base Button */
.button {
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.report_seeder_btn {
  background: var(--Red) !important;
  color: white !important;
  padding: 0px 5px !important;
  border-radius: 4px !important;
  font-weight: 400 !important;
  font-size: 0.8rem;
}
/* Primary Button */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Secondary Button */
.btn-secondary {
  background: var(--secondary);
  color: var(--black);
  border: 2px solid var(--secondary-dark);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

/* Text Button */
.btn-text {
  color: var(--primary);
  text-decoration: underline;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  /* Torrent-inspired icon */
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #03406E 50%, #4ECDC4 50%);
  border-radius: 50%;
  position: relative;
}

.logo-icon::after {
  content: "↓↑";
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

.logo-text {
  font-family: 'arabp2p', Tahoma;
  color: #03406E;
  font-weight: bold;
  line-height: 1.2;
}

.logo-text span:first-child {
  /* Arabic text styling */
  font-size: 1.2em;
  color: #4ECDC4;
}
.navbar {
  background: var(--primary);
  padding: 1rem 2rem;
  direction: rtl;
}

.nav-link {
  color: var(--white);
  padding: 0.5rem 1rem;
}

.nav-link:hover {
  color: var(--primary-light);
}

.active {
  border-bottom: 3px solid var(--secondary);
}


.input-group {
  margin-bottom: 1rem;
}
th {
    text-align:center;
}
label {
  color: var(--dark-gray);
  display: block;
  margin-bottom: 0.5rem;
  display: initial;
}
textarea{  
max-width: 500px;
color: var(--black);
overflow: auto;
line-height: 1.4em;
background: #fff;
border: 1px solid var(--medium-gray);
color: #000;
border-radius: 5px;
direction: rtl;
}
a {color: var(--link);text-decoration: none;}	
input, select{
	border: 1px solid var(--medium-gray);
	background: #fff; 
	padding: 5px;
	border-radius: 5px;
    -webkit-appearance: none; /* Removes default styling in Safari/Chrome */
    -moz-appearance: none; /* Removes default styling in Firefox */
    appearance: none; /* Removes default styling in modern browsers */
	line-height: normal;
	box-sizing: border-box;
	height: 30px;
}
select{min-width: 70px;}
@supports (-moz-appearance: none) {
  select {
    padding-right: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23444444"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat #fff left;
  }
}
input{
	max-width: 400px;
	width: 400px;
}

input[type=radio] {margin: 0px 5px 0px 1px;}
input[type="radio"],
input[type="checkbox"] {
	vertical-align: middle;
    width: 20px;
    height: 20px;
    border: 1px solid var(--medium-gray);
    cursor: pointer;
    display: inline-block;
    position: relative;
	min-width: auto;
}
input[type="radio"]:checked,
input[type="checkbox"]:checked {
	background-color: var(--secondary-dark);
	border-color: var(--black);
}
input[type="checkbox"]:checked::after,input[type="radio"]:checked::after {
    content: "✔";
    color: white;
    font-size: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.collect_points{background-color: var(--Green);
  border: none;
  color: white;
  padding: 0px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  cursor: pointer;
}
div.upload_fom{
color: rgb(0, 0, 0);padding: 7px;  border-radius: 5px;
}
input:focus {
  border-color: var(--primary-light);
  outline: 1px solid var(--primary-light);
}

.alert {
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
}

.alert-success {
  background: #e6f4ea;
  color: var(--success);
  border-left: 4px solid var(--success);
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border-left: 4px solid var(--warning);
}

.alert-error {
  background: #f8d7da;
  color: var(--error);
  border-left: 4px solid var(--error);
}


.pricing-table {
  border: 1px solid var(--light-gray);
}

.pricing-header {
  background: var(--primary);
  color: white;
  padding: 2rem;
}

.price {
  color: var(--secondary);
  font-size: 2.5rem;
}

.featured-plan {
  border: 2px solid var(--secondary);
  transform: scale(1.05);
}


table.block {
direction: rtl;
}
td.block,td.module {
margin: 0 auto;
  background: var(--primary-light);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem;
  border-radius: 4px;
  color: var(--white);
}

/* User Info Table Styling */
table.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 0;
  margin: 1rem 0;
  font-size: 1rem;
}

table.info-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--light-gray);
  vertical-align: top;
}

/* Remove border from the last row */
table.info-table tr:last-child td {
  border-bottom: none;
}

/* Style the label cells */
table.info-table td:first-child {
  font-weight: bold;
  color: var(--primary-dark);
  width: 20%; /* Adjust width if needed */
}

/* Style the value cells */
table.info-table td:last-child {
  text-align: right;
  color: var(--dark-gray);
}


.table-like {
  display: flex;
  align-items: stretch; 
  gap: 1rem; /* Space between the image and the info */
  padding: 1rem;
  border-radius: 0.25rem;
  background: var(--white);
}

.img-column {
	flex: 0 0 auto;
	width: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.img-column img {
  max-width: 100px; 
  display: block;
  max-height: 100px;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 0.1rem; /* Space between info rows */
  flex: 1; /* Allow info column to fill remaining space */
}

.info-row {
  padding: 0.5rem;
  font-size: 0.9rem;
}
.tor-row {
  display: flex;
  justify-content: space-between; /* Evenly distributes items across the row */
  align-items: center;
  padding: 0.5rem;
  font-size: 0.9rem;
}
.tor-item {
  margin: 0;
}
/* 🌍 Responsive Adjustments */
@media (max-width: 300px) {
	.table-like {
	flex-wrap: wrap; /* Allow items to wrap on smaller screens */
	flex-direction: column; /* Stack items vertically on small screens */
	gap: 0.5rem;
	}

	.tor-row {
	flex-direction: column;
	align-items: flex-start;
	flex-wrap: wrap; /* Allows wrapping on smaller screens */
	}
	/* Column for information */
	.info-column {
	  min-width: 200px; /* Prevents columns from getting too small */
	}
	/* Items inside each row */
	.tor-item {
	  flex: 1;
	  min-width: 100px; /* Ensure items don't shrink too much */
	}
  
}

@media (max-width: 480px) {
  .tor-row {
    font-size: 0.8rem; /* Reduce font size on very small screens */
  }
}
.flex-container {
  display: flex;
  justify-content: space-between; /* Space out items */
  align-items: center;            
  gap: 1rem;                      /* Optional: space between items */
}

.flex-item {
  flex: 1;                        
}

table.others {
    margin-bottom: 5px;
    text-align: right;
    padding: 5px;
    border-collapse: separate;
}

.listing_div{background-color: var(--white);padding-top: 2px;}


.table-title{font-weight: bold;color: var(--primary-dark);padding: 0.5rem 2rem;text-align: right;font-size: 1.3rem;}

/* Search form container */
.search-form {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* Labels row */
.search-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
  color: #333;
}

table.item-list {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  text-align: right;
}
table.item-list thead tr th{
  background-color: var(--white);
  color: var(--black);
  padding: 0.75rem;
  border-bottom: 2px solid var(--medium-gray);
  text-align: right;
}
table.item-list th{
  text-align: right;
}
table.item-list tr:nth-child(odd) {
  background-color: Var(--light-gray);
}

table.item-list tr:nth-child(even) {
  background-color: Var(--white); 
}

table.item-list td {
  padding: 0.5rem;
  border: 1px solid Var(--light-gray); 
  font-size: 1rem;
  text-align: right;
}


div.styled-select{
	display: inline;
}




.uploader-container {
  position: relative;
  display: inline-block;
}

.uploader-name {
  cursor: pointer;
  color: var(--primary);
  font-weight: bold;
}

.uploader-tab {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid #CAD3DB;
  border-radius: 0.25rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: max-content;
  min-height: 100px;
  padding: 2rem 0rem 0rem 0rem; 
  margin-top: 0.5rem;
}
.tab-close {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  cursor: pointer;
  color: var(--Red);
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
}

.tab-close:hover {
  color: var(--Red);
}

.uploader-tab a {
  display: block;
  padding: 0.25rem 0.5rem;
  color: var(--link);
  text-decoration: none;
}

.uploader-tab a:hover {
  background: var(--primary-light);
  color: var(--white);
}

.uploader-container input[type="checkbox"]:checked ~ .uploader-tab {
  display: block;
}













.uploader-container input {display: none;}
select[name="category"] {
  width: 225px;
}
.pager-right{text-align: right;padding: 10px 2px;}
.circles {
display: flex;
justify-content: space-evenly;
}
.green-circle,.pink-circle,.red-circle,.blue-circle {
  display: inline-block;
  vertical-align: text-top;
  background: green;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  vertical-align: sub;
}
.green-circle{
  background: green;
}
.pink-circle {
  background: rgb(245, 151, 149);
}
.red-circle {
  background: rgb(211, 34, 11);
}
.blue-circle {
  background: var(--link);
}
.thanks_btn:disabled{}
.comment_header{justify-content: flex-start;display: flex;}
.comment_voting{width: 80%;}
.comment{flex: 1;justify-content: center;display: flex;align-items: center;flex-direction: column;word-wrap: anywhere;}
.signature{font-size: clamp(0.5rem, 0.7vw, 0.9rem);}
.signature img {max-width: 500px;max-height: 200px;}
.custom_title{display: block;color: var(--medium-gray);font-size: 0.8rem;}
#mod_task{background: var(--white);}
.tor-item a,.tor-item a:visited,.tor-item a:hover,.tor-item a:active {color: var(--black);}
.red,.red a,.red a:visited,.red a:hover,.red a:active{color: var(--Red);}
.green,.green a,.green a:visited,.green a:hover,.green a:active{color: var(--Green);}
table.item-list thead tr th.green,
table.item-list thead tr th.green a,
table.item-list thead tr th.green a:visited,
table.item-list thead tr th.green a:hover,
table.item-list thead tr th.green a:active {
  color: var(--Green);
}
table.item-list thead tr th.red,
table.item-list thead tr th.red a,
table.item-list thead tr th.red a:visited,
table.item-list thead tr th.red a:hover,
table.item-list thead tr th.red a:active {
  color: var(--Red);
}
table.item-list thead tr th.light-blue,
table.item-list thead tr th.light-blue a,
table.item-list thead tr th.light-blue a:visited,
table.item-list thead tr th.light-blue a:hover,
table.item-list thead tr th.light-blue a:active {
  color: var(--primary-light);
}
.light-blue,.light-blue a,.light-blue a:visited,.light-blue a:hover,.light-blue a:active{color: var(--primary-light);}
#torrents_list_p tr {border:0;}
#mine_bar_search_box{width: 200px;}
.rights {margin:2px 0px 5px 2px;border-radius: 5px;display:inline-block;font-weight:bold;color:#FFFFFF;background-color:var(--secondary-dark);text-align:center;padding: 1px 15px;}
.remove_warning {margin: 10px;border: 4px solid var(--light-gray);padding: 5px;}



/* Responsive design */
@media (max-width: 768px) {
  .search-row {
    flex-direction: column;
  }
  .search-row > * {
    width: 100%;
    flex: none;
  }
  .search-btn {
    width: 100%;
  }
}


.file-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.file-item {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1rem;
}

.file-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.filename {
  font-weight: bold;
  font-size: 1.1rem;
}

.off-btn {
position: relative;
display: inline-block;
padding: 2px 20px 2px 70px;
background: var(--secondary-dark);
color: white;
text-decoration: none;
border-radius: 4px;
direction: rtl;
overflow: hidden;
border: none;
cursor: pointer;
transition: all 0.3s ease;
font-size: 0.8rem;
vertical-align: bottom;
}
.off-btn::before {
  content: "تفعيل"; 
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60px; 
  background: var(--medium-gray); 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover effects */
.off-btn:hover {
  background: var(--secondary-dark); 
}

.off-btn:hover::before {
  background: var(--medium-gray); 
}

.on-btn {
position: relative;
display: inline-block;
padding: 2px 20px 2px 70px;
background: var(--Red);
color: white;
text-decoration: none;
border-radius: 4px;
direction: rtl;
overflow: hidden;
border: none;
cursor: pointer;
transition: all 0.3s ease;
font-size: 0.8rem;
vertical-align: bottom;
}
.on-btn::before {
  content: "ايقاف"; 
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60px; 
  background: var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover effects */
.on-btn:hover {
  background: var(--Red); /* Darker green */
}

.on-btn:hover::before {
  background: var(--medium-gray); /* Darker red */
}








.send-btn-mid{
  background: var(--secondary-dark);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  min-width: 120px;
  max-width: 140px;
}
.send-btn-small{
  background: var(--secondary-dark);
  color: white;
  border: none;
  padding: 0 0.60rem;
  border-radius: 4px;
  cursor: pointer;
  min-width: 70px;
  max-width: 90px;
  font-size: 0.8rem;
}
.cancel-btn-small{
  background: var(--Red);
  color: white;
  border: none;
  padding: 0 0.60rem;
  border-radius: 4px;
  cursor: pointer;
  min-width: 70px;
  max-width: 90px;
  font-size: 0.8rem;
}
.download-btn,.send-btn,a.tor_download,input[type=submit],input[type=button] {
  background: var(--secondary-dark);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  min-width: 70px;
  max-width: fit-content;
}
input[type=reset]{
  background: var(--Red);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  min-width: 70px;
  max-width: fit-content;
}
.download-btn a,.download a:link,.download a:visited{color: white;}

.cancel-btn {
  background: var(--Red);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  min-width: 70px;
  max-width: 90px;
}
.Yellow-btn,.friendship_ask {
  background: var(--Yellow);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  min-width: 70px;
  max-width: 90px;
}
.friendship_ask{margin-bottom: 15px;}
.small-btn {
  background: var(--Red);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}
.file-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.meta-group, .stats-group {
  display: flex;
  gap: 1rem;
}

.file-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: #f0f0f0;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .file-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .file-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .download-btn {
    width: 100%;
  }
}

.screenshot:visited{color: #3e6795;}
.listing_radios{padding: 6px 40px;width: fit-content;margin: 10px;display: inline-block;}
#recover_div{ padding: 20px;font-size: 1rem;}
.login_links {background-color: var(--light-gray);padding: 10px 20px;border-radius: 4px;color: var(--black);}
.wish{
display: inline-block;
height: 30px;
vertical-align: sub;
padding: 7px 11px !important;
background: url("images/wish-heart.png") center no-repeat transparent !important;
}
.unwish{
display: inline-block;
height: 30px;
vertical-align: sub;
padding: 7px 11px !important;
background: url("images/wished-heart.png") center no-repeat transparent !important;
}
.vote{
padding: 7px 11px !important;
background: url("images/vote-thumbs-up.png") center no-repeat transparent !important;
}
.already_voted{
padding: 7px 11px !important;
background: url("images/unvote-thumbs-up.png") center no-repeat transparent !important;
}

button:disabled{cursor:not-allowed;}
#userdeatils_tpl{text-align: right;background-color: var(--white);}
#footer{
width:100%;
text-align:center;
margin-top: 10px;
color: #fff;
font-weight: bold;
}
#footer a{color: #fff;}

.btn {
  background: var(--secondary-dark);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  min-width: 7rem;
  max-width: fit-content;
}
.btn-y{
  background: var(--Yellow);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  min-width: 7rem;
  max-width: fit-content;
}
.thank{
  height:auto !important;
}
.thanks_btn{
padding: 7px 15px;
float: initial;
margin: initial;
}

.thank > a {display:inline-block;}

.pager {
  background-color: transparent;
  padding: 1px 3px 1px 3px;
}

.pagercurrent {
  background-color: var(--secondary-dark);
  padding: 1px 3px 1px 3px;
  color:#fff;
}

.pager a:link,
.pager a:visited,
.pagercurrent a:link,
.pagercurrent a:visited {
    text-decoration:none;color: var(--black);
}

.pager a:hover,
.pagercurrent a:hover {
    text-decoration:none;
}
.line{border-bottom: 2px solid var(--light-gray);}
.profile-upload-header,.profile-download-header{
  font-size: 1.2rem;
  text-align: center !important;;
}
.profile-status-header{
font-size: 1.5rem;
  text-align: center;
  font-weight: initial;
  vertical-align: bottom;
  line-height: 20px;
}





div.listing_div1{display: inline-block; margin: 0px 3px;vertical-align: top;}
img.listing_poster{padding: 2px;box-shadow: 0px 0px 6px rgba(132, 132, 132, 0.75);border-radius: 4px;height: 350px; width: 250px;}



.ad_banner img {max-width: 600px; height: 100px;border-radius: 3px;width: 100%;padding: 5px;}
.ad_banner span{
    height: 34px;
    display: block;
    background: #1284c0;
    background: -webkit-linear-gradient(#1284c0, #8fb6da);
    background: -o-linear-gradient(#1284c0, #8fb6da);
    background: -moz-linear-gradient(#1284c0, #8fb6da);
    background: linear-gradient(#1284c0, #8fb6da);
}
.show_block_btn{animation-name: anime1;animation-duration: 1s;border: 0;background: transparent;color: #fff;font-weight: bold;}
.chat_delete_btn{border: 0;background: transparent;color: red;font-weight: bold;}
@keyframes anime1 {from {background-color: red;} to {background-color: yellow;}}
#show_blocks{text-align: right;padding: 3px 9px 0px 0px;}
#m_toolbar{/*position: fixed;*/z-index: 500;top: 0px;left: 0px;right: 0px;}
#main_content{vertical-align: top;padding: 0;}
#user_uploads_d{padding: 10px 2px 10px 2px;}
#user_uploads_t{color: #000;text-align:center;}
#user_active_d{padding: 10px 2px 10px 2px;}
#paypal_d{border: 1px solid #3C8DC5;height: 150px;width: 400px;margin: 0px auto;padding: 10px;background-color: #FFF;border-radius: 4px;}
.movies_qly div{display: inline-block;}
#MoviesCount{width: 34px;}
#movie_n{width: 120px;padding-top: 10px;}
#r_user{width: 150px; text-align: right;padding-right: 3px;}
#HsearchL{width:310px;text-align: left;}
#HsearchL input[type=image]{width: 22px; height: 22px;}
#Emaz_img_v,#Imaz_img_v{border-radius: 5px;width: 257px; height: 357px;}
#uname_h,#uname_input_h,#upass_input_h{text-align: right; width: 100px;}
#upass_h{text-align: right; width: 80px;}
#usum_h{text-align: right; padding-right: 10px;}
#ucreat_h,#uRECOVER_h{text-align:right;}
div.categoriesV_div img,div.free_cats_img img,div.free_torrents_icons img{width: 35px; height: 35px;}
div.categoriesV_div,div.free_torrents_icons {display: inline-block;margin: 3px 10px;width: 40px;}
div.free_cats_img{display: inline-block;margin: 10px 10px;width: 150px;}
.free_cats_lname{display: block;}
#free_cats_header{padding: 20px;font-size: 12px;font-weight: bold;}
#free_torrents_icons_d{background:#9AB4CB;padding: 20px;}
#UserReport {word-break: break-all;width:100%;background: #DEDEDE;;border-radius: 4px;padding: 2px;}
#UserReport div {width: 100%;text-align: right;vertical-align: top;display: inline-block;*display: inline;zoom: 1;}
#AdminReport {margin: 7px 0px 15px;width:100%;background: #FFE4C4;border-radius: 4px;padding: 2px;}
#AdminReport div {width: 100%;text-align: right;vertical-align: top;display: inline-block;*display: inline;zoom: 1;}
#report_Moderate{width: 100%;text-align: right;vertical-align: top;display: inline-block;*display: inline;zoom: 1;}
#ModName {width: unset !important;margin-left: 5px;text-align: right;vertical-align: top;display: inline-block;*display: inline;zoom: 1;}
#AdminName{width: unset !important;text-align: right;vertical-align: top;display: inline-block;*display: inline;zoom: 1}
.actor {color: black !important;font-weight: unset !important;font-style:italic !important;} 
.more_listing {font-size: 0.8rem;
  background-color: var(--light-gray);
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
  text-align: center;
  margin: auto;
  padding: 5px 50px;} 

.font16 {
  font-size: 16px;
} 
.font15 {
  font-size: 15px;
}
.font14 {
  font-size: 14px;
} 
.font13{
  font-size: 13px;
} 
.font12 {
  font-size: 12px;
} 
.font11 {
  font-size: 0.8rem;
} 
.font10 {
  font-size: 10px;
} 
div.f_torrent{display: inline-block;margin-bottom: 20px;position: relative;}
div.f_seedbox_ic{position: absolute;bottom: 83px;}
img.f_torrent_poster{border-radius: 5px;margin: 5px;width: 200px; height: 200px;}
div{
margin: 0 auto;
padding: 0;
margin: 0;
text-align:center;
}
table {
width:100%;
margin: 0 auto;
border-collapse:collapse;	
padding: 0;
border:0px;
text-align:center;
}

body {
font-family: arabp2p,tahoma, arial, helvetica, sans-serif;
font-optical-sizing: auto;
font-style: normal;
font-size: 0.9rem;
background: var(--background-color);
margin: 0 auto;
}
tracker_logo{
vertical-align:top;
}
td.main{
vertical-align:top;
padding:0px;
}
.mainbigL,.mainbigR{
vertical-align:top;
width:180px;
padding:0;
background: transparent;
}
#Block58 > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1){background: #005ba6;}
#Block57 > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1){background: #005ba6;}
td.mainsmall{
vertical-align:top;
width:5px
}
td.blocktop{
vertical-align:top;
padding: 0;
}
table.module{direction: rtl;text-align:right;}
.highlight {
  background: #F8F81A;
  color: #FF0000;
}
.Upload {

font: bold 15px/19px times new roman;
padding:5px;
text-align:right;

background-color:#9ab4cb;
}
.Upload a:link, .Upload a:visited {
  font-weight: bold; color: #000;
  text-decoration: underline;
}
.Upload a:hover  {
  font-weight: bold; color: red;
  }
#social_buttons{line-height: 10px;z-index: unset !important;}
#social_buttons > div:nth-child(1){left: 85px !important;}


.btn_small{
background-color: #2482c8; 
border: none;
color: white;
text-align: center;
font-weight: bold;
text-decoration: none;
display: inline-block;
padding: 2px 15px;
direction:rtl;
margin-right: 2px;
border-radius: 2px;
cursor:pointer;
line-height: 17px;
}
.btn_red{background-color: #A30F1A; }





#comment_div input[type=submit],#u_csend,.btn_grey,form[name=request] input[type=submit]{background: #005ba6;color: #fff;}
input.tor_report_input{cursor: pointer;background-color: rgb(163, 15, 26);margin: 4px 2px 5px;border-radius: 4px;display: inline-block;color: #FFF;text-align: center;float: right;padding: 3px 15px;border: 1px solid rgb(163, 15, 26);}



form[name=request]{
background: rgb(240, 243, 247);
padding: 5px 0;
border-radius: 3px;
margin: 5px;
}
#report input{vertical-align: middle;}
#report input[type=submit]{
border: 1px solid transparent;
padding: 2px 6px;
margin: 0px;
border-radius: 4px;
color: #fff;
font-weight: bold;
background-color: #005ba6;
font-size: 8pt;
margin-top: 2px;}
.toolbar_div{width: 100%;background: var(--primary-light);margin: 0 auto;position: fixed;
top: 0;
z-index: 1;
height: 50px;}
.searchform input.box {
color: #000;
background: #fff url(searchim.png) no-repeat right;
margin-right: 5px;
}
.searchform input.box:focus {
background: #fff;
outline: none;
}
.btk{
border: 1px solid #fff;
color: #ffffff;
font-weight: bold;
font-size: 12px;
padding: 2px;
vertical-align: middle;
cursor: pointer;
text-align:center;
border-radius: 5px; /* CSS3 */
direction:rtl;
}
.btk   a:link { font-weight: bold; color: #fff; text-decoration:none;}
.btk   a:visited  { font-weight: bold; color: #fff; text-decoration:none;}
.shotcuts{
color: rgb(0, 0, 0);
background-color: rgb(154, 180, 203);
border: 1px solid rgb(255, 255, 255);
font-weight: bold;
font-size: 12px;
cursor: pointer;
border-radius: 5px;
}
table.Faq{
border:1px solid #4E7FCD;
background: url("images/45gsv3ee.png");
padding:0px;
margin:1px;
font-weight: bold;
color:#000000;
text-align:left;
overflow: auto;
direction:rtl;
}
table.Faq a:link, table.Faq a:visited {
  font-weight: bold; color: #275ECC;
}
/* A quote, perhaps from another post. */
.quote
{
background-color: #f2f9fe;
border-color: rgb(60, 141, 197);
border-style:solid;
border-width:1px;
width: 95%;
border-radius: 3px; 
display: inline-block;
padding: 3px 0px 3px 0px;
}
.quote1 {display: inline-block; width: 100%; }
.quote2 {text-align: right; width: 80%; display: inline-block; }
.code
{
    color: #000;
    background-color: #fff;
    font-size: small;
    line-height: 1.3em;
    border-style: inset;
    margin: 1px auto 1px auto;
    padding: 1px;
    width: 95%;
    overflow: auto;
    max-height: 20em;
	
}

img {
border:0px;
vertical-align: middle;
max-width: 700px;
}
.toolbar_avatar{
height: 42px;
width: 42px;
border-radius: 20px;
}
.msgs_alart:not(:empty){
position: relative;
background-color: rgba(212, 19, 13, 1);
color: #fff;
border-radius: 3px;
padding: 1px 3px;
font: 9px Verdana;	
margin-left: 4px;
}
.images_alart:not(:empty){
position: relative;
background-color: rgba(212, 19, 13, 1);
color: #fff;
border-radius: 3px;
padding: 1px 3px;
font: 9px Verdana;	
margin-left: 4px;
}
.users_div{
padding-top: 10px;	
}


select.drop_pager {
  background-color: #E0E1E8;
  font-size: 11px;
  height: 19px;

}





#logo {
background: url(images/logo-2.png);
height: 100px;
background-repeat: no-repeat;
background-position: center;
width: 100%;
position: relative;
margin-top: 50px;
margin-bottom: 5px;
z-index: -1;
background-size: 200px 100px;
}

#bodyarea {
color: #000;
  background-color: var(--white);
}
#slideIt {background-color: #F0F3F7;}

#header{
  background: #9AB4CB;
    width:100%;
}
#Imaz_table_v{direction: rtl;}
#BlockUser,.mgz_peers img,.Mitemsize img{display: none !important;}
.header td{
border-width: 1px 0 1px 1px;
border-style: solid;
background: #005ba6;
height: 20px;
}
img[src="SEEDBOX.png"]{display: inline-block !important;}
.header a{ color: #fff; text-decoration:none;}
form[name="msg_respon"] div{line-height: 14px;}


/*#Title {display: none;}*/
.header td:hover span{ background: #5caad3;}

#nocolumns { width:100%;padding-bottom: 30px; }

#screenshot{
	position:absolute;
	border:1px solid #ccc;
	background:#333;
	padding:5px;
	display:none;
	color:#fff;
	}

td.sticky {
background-color:#BBDCE8;
color:#000;
}



h1 {
    font-size: 12pt;
}

p {
    font-size: 10pt;
}


table.tool { padding:2px;border-spacing:0;direction:rtl;width:100%;text-align:center; }


table.header {
    color: #ffffff;
    background: #5caad3;
	direction:rtl;
	width:100%;
	text-align:center;
	color: #045078;
}

.report a:link,.report a:active,.report a:visited {  color: red; }
.input[name="reportcmt"] {
  color: red;
  	border-color: black;
	border-style: solid;
	border-width: thin;
	padding: 3px;
	vertical-align:text-top;
  }
td.descriptiono{

color: #000;
font-weight:bold;
background-color: #FFF;
font-size: 10pt;
padding:10px 2px 5px 2px;
	direction:rtl;
	text-align:center;

}



.movies_div{padding-top: 2px;}
.movies_page_title{font-size: 18px; padding-bottom: 5px; font-weight: bold;}
.movies_filter{text-align: right; background-color:#E9F2F9; padding: 5px; margin: 5px; border-radius: 5px;}
.movies_filter_title{display: inline-block; font-weight: bold; color: black;margin-left: 7px;}
.movies_pager{display: inline-block;padding: 0px 3px; color: red;}
.movies_seeder{display: inline-block;padding: 0px 3px; color: green;}
.movies_peer{display: inline-block;padding: 0px 3px; color: red;}

td.blocklist {
         background: #D7EBFC;
         padding:2px;
         margin:0px;
         font-size: 8pt;
		 font-weight: bold;

}
.user {background: #A1BFD9;}
td.lista {
background: var(--white);
  font-size: 8pt;
  direction: rtl;
  text-align: right;
}
.poster{

border: 2px solid #e9f2f9;
}

.description a:link, .description a:visited {
  color: #006699;
}
.description a:hover{
color: #EE4000
}


td.title {
    font-size: 8pt;
}

td.navigation {
    background-color: #DDE5EB;
    font-weight: bold;
    font-size: 8pt;
}

form {
    margin-top: 0;
    margin-bottom: 0;
}

.sublink {
    font-style: italic;
    font-size: 7pt;
    font-weight: normal;
}

a.index {
    font-weight: bold;
}

a.biglink {
    font-weight: bold;
    font-size: 10pt;
}

.important {
    font-weight: bold;
    font-size: 10pt;
}

td.yellow {
    background-color:#E0E1E8;
    color: #BEC635;
}



td.progress {
	display: none;
    padding: 0px;
    background-image: url(images/backprogress.gif);
    background-repeat: repeat-x;
    height: 10px;
	text-align: left;
}



td.yellow a:link {
    color: #BEC635;
}
td.yellow a:visited {
    color: #BEC635;
}

li{
list-style-position:inside;
} 
table.categories { 
text-align:right;
border-collapse: separate;
background: var(--white);
}
td.categories { 
padding:2px 3px 1px 1px;
border-bottom: 3px solid var(--light-gray);
}
table.forum { 
text-align:right;
background: #f2f9fe;
border-collapse: separate;
}
td.forum{
padding:3px;
text-align: right;
border: 3px solid var(--light-gray);
}
.forum a{font-weight: initial;}
table.success { 
width: 650px;
border-radius: 4px 4px 0px 0px;
overflow: hidden;
border-collapse: separate;
border-spacing: 0px;
border: 1px solid green;
table-layout: fixed;
word-wrap: break-word;
word-break: break-all;
}
td.success { 
color: rgb(255, 255, 255);
font-size: 14px;
font-weight: bold;
background: none repeat-x scroll 0% 0% green;
}
table.error { 
width:650px;
border: 1px solid #9f0000;
border-radius: 4px 4px 0px 0px;
overflow: hidden;
border-collapse: separate;
border-spacing: 0px;
table-layout: fixed;
word-wrap: break-word;
word-break: break-all;
}
td.error { 
background: #9f0000;
color:#ffffff; 
font-weight: bold; 
height: 20px;
}
a.shva3h {margin:4px 0px 4px 2px;border-radius: 4px;display:inline-block;font-weight:bold;color:#FFFFFF;background-color:#0F70A3;text-align:center;margin-bottom: 5px;padding: 3px 15px;}
a.shva3h:hover{background-color:#0B5073;}
.information { color:#ffffff;; font-weight: bold; font-size: 14pt; background:url(images/chb.gif); background-repeat: repeat-x;}

/* ######### End Main Tracker Body ######### Start Ajax Poll System ######### */

td.deleted {
    background-color:#FF95AC;
    color:#000000;
}

td.added {
    background-color:#C1FF83;
    color:#000000;
}

td.modified {
    background-color:#DEDEDE;
    color:#000000;
}

#mainContainer {
    width:100%;
    overflow:auto;
    
    background-color:#DDE5EB;
    
}

#mainContent {
    padding:0px;
        
}
  
.clear {
    clear:both;
}

.poller {  /* The poller box */
  
    width:100%;
    background:#fff;
	color:#000;
        overflow:hidden;
}

.pollerTitle {  /* Poller title above radio buttons */
    margin-top:0px;
    margin-bottom:5px;
    font-weight:bold;
    font-size:1em;
}

.pollerOption {  /* Label for each radio button */
    margin:0px;
}

.result_pollerOption {  /* Label for each option above graph - i.e. results */
    margin:0px;
    font-size:0.8em;
}

.result_pollerTitle {  /* Title of poller - when ajax shows the results */
    margin-top:0px;
    margin-bottom:5px;
    font-weight:bold;
    font-size:1em;
}
.poller_results{text-align: right; padding-left: 5px;}
.result_pollGraph img {  /* Don't change this one, it is used to get the left and right image(the corner) positioned correctly */
    float:left;
}

.result_pollGraph div {  /* The <div> tag where the percentage result is shown */
    float:left;
    height:12px;
    background-repeat:repeat-x;
    color:#FFF;
    font-size:0.9em;
    line-height:16px;
}

.result_pollGraph {  /* Graph div - parent of both the corner images and the div displaying percentage votes */  
    height:12px;
}
  
.poller_waitMessage {  /* Message when Ajax is working getting restults fromt the server */
    display:none;  
}  

.result_totalVotes{
    clear:left;
    font-size:0.8em;
    margin-top:10px;
    font-style:italic;
    background:transparent;
}

.formButton {
    width:75px;
}
.zip form{display: inline-block;}
.zip button{padding: 3px 2px;}
/* ######### End Ajax Poll System ######### Start Ajax Chat ######### */
.chat_show {display:block !important;} 
.chat_send_header{max-width: 400px;margin: 0 auto;margin-top: 3px;margin-bottom: 3px;border-radius: 3px;padding: 0 5px;display:none;background: #dbe9fb;}
.chat_reset_btn{
cursor: pointer;
border: none;
text-align: center;
text-decoration: none;
display: inline-block;
direction:rtl;
line-height: 17px;
background: transparent;
color: inherit;
}
.chat_reply_btn{
background: transparent url("images/chat_reply.png") no-repeat;
 background-size: 20px 20px;
 vertical-align: text-top;
cursor: pointer;
border: none;
text-align: center;
font-weight: bold;
text-decoration: none;
display: inline-block;
direction:rtl;
line-height: 17px;
width: 20px;
height: 20px;
}
.chat_quote_btn{
background: transparent url("images/chat_quote.png") no-repeat;
 background-size: 20px 20px;
 vertical-align: text-top;
cursor: pointer;
border: none;
text-align: center;
font-weight: bold;
text-decoration: none;
display: inline-block;
direction:rtl;
line-height: 17px;
width: 20px;
height: 20px;
}
.hide_block_btn{color: #fff;background: transparent;vertical-align: text-top;cursor: pointer;border: none;text-align: center;font-weight: bold;text-decoration: none;display: inline-block;direction:rtl;line-height: 17px;width: 20px;height: 20px;float: right;font-size: 18px;}
.chat_reply_text{margin-bottom: 5px;margin-right: 3px;background: #e2efff;border-radius: 3px;font-style: italic;text-align: right;width:80%;border:1px solid azure;}
#chat {
overflow:auto;
width: 100%;
height: 180px;
padding: 0px;
}

#chatoutput ul {
    list-style: none;
    margin:0px;
    padding:0px;
	background:var(--light-gray);
	line-height: 14px;
}

div.chatoutput {
    background:var(--white);
    padding:5px 3px 3px 10px;
    margin:0px;
    color:#000;
    line-height: 150%;
    margin-bottom:2px;
	text-align:right;
	border-radius: 0px 3px 3px 0px;
}
div.chatoutput a:link,div.chatoutput a:active,div.chatoutput a:visited {  color: #1284c0; text-decoration:none;}
div.chatoutput a:hover        { text-decoration:none; color: #EE4000; }

div.loader {
background-image: url('images/ajaxchat/loading.gif'); 
background-repeat: no-repeat; 
background-position:center center; 
width:32px; 
height:32px;
}

#chatoutput ul li {
}

#chatoutput ul li span.name {
    display: block;
    background:url(images/ajaxchat/bubble.png) no-repeat left;
    padding-left:19px;
      margin-bottom:1px;
    font-weight: normal;
    color: #000;
	padding:3px;
}

#chatoutput ul li:hover span.name {
    background:url(images/ajaxchat/bubblehover.png) no-repeat left;
}

form {
    padding:0px;
    margin:0px;

}

#chatoutput {
    text-align: right;
    margin-right: 0px;
	direction:rtl;
}

/* swaps edit and delete images on mouse over */
img.EditSwap {
background:url(images/ajaxchat/shout_edit_gray.gif) no-repeat bottom;
}
img.EditSwap:hover {
background:url(images/ajaxchat/shout_edit.png) no-repeat bottom; 
}
img.DeleteSwap {
background:url(images/ajaxchat/smile.gif) no-repeat bottom;
}
img.DeleteSwap:hover {
background:url(images/ajaxchat/shout_delete.png) no-repeat bottom; 
}
/* end of swaping */

img.form {
background:url(images/ajaxchat/frame.png) no-repeat;
vertical-align: middle;
}
img.form:hover {
background:url(images/ajaxchat/frame_hover.png) no-repeat;
}
.chatsend{
border: 1px solid transparent;
padding: 2px 6px;
margin: 0px;
border-radius: 4px;
color: #fff;
font-weight: bold;
background-color:#005ba6;
font-size: 8pt;
}
table.smilies{
width: auto;
}
td.smiliesicon{
padding:3px 2px 0px 2px;
}
#shoutheader{
background-color: var(--white);
padding: 1px;
}
#chatbarText{
vertical-align: middle;
} 
/* ######### End Ajax Chat ######### */



/* #########استمارة الرفع######### */
div.upload_txt{
background-color: rgb(255, 255, 255); color: rgb(0, 0, 0); text-align: right; padding: 7px; margin: 5px; border-radius: 5px;
}

/* #########استمارة الرفع######### */
/* #########قائمة التورنت######### */

div.torrents_list{
text-align: center;
position: relative;
}
span.rss{position: absolute;left: 10px;}
span.userrss{position: absolute;left: 5px;top: 15px;}
table.search{
text-align: center;
width:300px;
padding:10px;
border-collapse:separate;
border-radius: 3px 3px 0px 0px;
color: #000;
background: #ccdff3;
}


#hdr-box1 ,#hdr-box2 ,#hdr-box3 ,#hdr-box4 {
width: 75px;
height: 24px;
top: 10px;
position: absolute;
display: inline-block;
}
#hdr-box1 {background: #5caad3;left: 15px;}
#hdr-box2 {background: #3694c7;left: 100px;}
#hdr-box3 {background: #06679c;left: 185px;}
#hdr-box4 {background: #045078;left: 270px;}






 /* Dropdown Button */
.dropbtn{
    color: #fff;
    padding: 3px 14px;
    font-size: 10pt;
    border: none;
    cursor: pointer;
	font-weight: bold;
	direction: rtl;
	background: transparent;
}
.dropbtn a {
    background-color: inherit;
    color: #fff;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
	height: 50px;
}

	
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
	top:50px
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
	direction: rtl;
	line-height: initial;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: var(--primary-light);color:#fff;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #03406E;
	color:#fff;
} 






form.torrent_form{
padding:10px;
}

table.torrent {
color: #000;
border-radius: 3px 3px 0px 0px;
direction:rtl;
margin:8px 0px 8px 0px;
}


td.torrent{color:#06679c;}
td.seeds a:link,td.seeds a:active,td.seeds a:visited  {color: green;}
td.leechers a:link,td.leechers a:active,td.leechers a:visited  {color: red;}
img.torCat{border-radius: 5px;}
td.m{text-align: right;padding-right: 2px;}
td.torFilename a:link,td.torFilename a:active  {font-weight: bold;color: #0077fc}
td.torFilename a:visited  {color: #4A9EDD;}
td.torFilename {text-align: right;}
table.block h1 {font-size: 16px;}

/* #########قائمة التورنت######### */

/* #########تفاصيل التوت######### */

div.tor_{color:#000;border-radius: 0px 0x 5px 5px;background: #d8e9fb;}
div.tor_info{width:auto;color:#074b83;padding-bottom: 10px;padding-top: 10px;background: #d8e9fb;}
div.tor_info a:link,div.tor_info a:active,div.tor_info a:visited  {color:#074b83;}
div.tor_links{float: left;margin-left:4px;}
img.icon{margin-right:4px;}
div.tor_ a.tor_report:link,div.tor_ a.tor_report:visited,div.tor_ a.tor_report:active {font-size: 8pt;cursor: pointer;background-color: #A30F1A;margin: 4px 2px 5px 2px;border-radius: 4px;display: inline-block;font-weight: bold;color: rgb(255, 255, 255);width: 80px;text-align: center;padding: 3px 15px;}
div.tor_ a.tor_report:hover{background-color: #5D090F;}
form.stky_form{display: inline;}
input.larg_but {border-radius: 3px;border: 0;position: absolute; right: 5px;bottom: 1px;display:inline-block;font-weight:bold;color:#FFFFFF;background-color:#0D6CB1;text-align:center;margin-bottom: 5px;height: 30px;}
input.larg_but:hover{background-color:green;}
.block_user_comments_btn{background: var(--Red); border-radius: 4px;font-size: 0.7rem;padding: 1px 5px;}

div.tor_info_itm{display: inline-block;position: relative;top: 5px;}
span.seeds,span.seeds a:link,span.seeds a:active,span.seeds a:visited  {color:green;}
span.leechers,span.leechers a:link,span.leechers a:active,span.leechers a:visited  {color:red;}
span.cpeers a:link,span.cpeers a:active,span.cpeers a:visited  {color:#1284c0;}
div.tor_block{background: #F2F2F2;display: inline-block;width: 100%;}
div.tor_desc{background: #F2F2F2;overflow: hidden;vertical-align: top;font-size: 14px;color:#000;padding:5px 5px;overflow-wrap: anywhere;}
.tor_desc img,.tor_com_comment img{max-width:700px;}
span.imgtext {top:5px;right:5px;z-index:100;position:absolute;color:white;font-size:12px;font-weight:normal;}
span.imgtext a:link,span.imgtext a:active,span.imgtext a:visited,span.imgtext a:hover {cursor: pointer;color: white;background-color: black;border-radius: 2px;padding: 0px 2px;}
div.tor_uploader{background: #e8edf2;float: right;color:#074b83;width: 180px;margin-left: 3px;padding:5px 0px 20px;}
table.tor_block{table-layout: fixed;margin-bottom: 10px;border-collapse: separate;border-spacing: 5px 0px;background: #f2f9fe;}
td.tor_desc{height: 100%;word-break: break-all;word-wrap: break-word;background-color:#F2F2F2;border-radius: 5px 5px 0px 0px;vertical-align: top;font-size: 14px;color:#000;padding:5px 5px 15px 5px;;}
td.tor_uploader{height: 100%;vertical-align: top;width: 180px;background: #F2F2F2;margin-left: 3px;border-radius: 5px;padding:5px 0px 20px;}
div.tor_uploader_name{font-size: 14px;}
div.tor_uploader_avatar{padding:4px 0px 4px 0px;}
div.tor_uploader_level{padding-bottom: 4px;}
.tor_uploader_avatar img{max-height: 100px;max-width: 100px;border-radius: 5px;width: 100%;}
div.tor_uploader_itm{font-size: 12px;}
div.tor_uploader_cont{padding:4px 0px 15px 0px;}
div.seedbox_inf {
  background-color: var(--light-gray);
  border-radius: 4px;
  padding: 4px 8px 4px;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  font-size: 0.8rem;
}
 /* The side navigation menu */
.Topnav {
height: fit-content;
  width: 350px;
  position: fixed;
  z-index: 1;
  top: 50px;
  right: 0;
  background-color: #414141;
  overflow-x: hidden;
  transition: 0.5s;
  color: #fff;
  padding: 10px 5px;
  border-radius: 4px;
}

/* The navigation menu links */
.Topnav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s
}

/* When you mouse over the navigation links, change their color */
.Topnav a:hover, .offcanvas a:focus{
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.Topnav .closebtn {
position: absolute;
top: 0;
left: 0;
font-size: 36px;
line-height: 20px;
color: var(--Red);
}

table.related{
text-align: right;
max-width: 700px;
width: 100%;
color: #005ba6;
background: #005ba6;
border-radius: 3px 3px 0px 0px;
margin:8px 0px 8px 0px;
clear: both;
}
.related > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1){
color: #fff;
font-size: 13px;
font-weight: bold;
background: url("images/image_maps__5_32_vertical_1284c0_94b8db_0.png");
margin: 0 auto;
background-repeat: round;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
table.related a:link,table.related a:active,table.related a:visited  {color:#06679c;}
table.tor_coms_table{border-top: 9px solid #94B8DB;border-radius: 5px; border-spacing: 5px 0px;}
.comments_div table:last-child{margin-bottom: 0px;}
td.tor_com_date{background: #F2F2F2;color: #074b83;vertical-align: top;height: 20px;padding: 2px;}
td.tor_com_user{background: #e8edf2;width: 180px;vertical-align: top;font-size: 13px;color:#074b83;padding:5px 0px 5px 0px;}
div.tor_com_comment,td.tor_com_comment{background: #F2F2F2;font-size: 14px;word-break: break-all;word-wrap: break-word;vertical-align: middle;color:#000;margin-left: 3px;padding:5px 0px 5px;}
td.tor_com_signature{background: #F2F2F2;height: 2px;font-size: 14px;word-break: break-all;word-wrap: break-word;vertical-align: bottom;color:#000;margin-left: 3px;padding:0px 0px 7px;}
td.tor_com_signature img{max-height: 200px;max-width: 600px;width: 100%;}
hr.line{width: 50%;background-color: rgb(154, 180, 203);border: 1px solid rgb(154, 180, 203);}
/* #########تفاصيل التوت######### */

td.wremove {text-align: left;}

/* #########المجله######### */
#loadinga,#loading{
width: 100%;
position: absolute;
}
#containera,#container{
padding: 5px;
direction: rtl;
}
.header_bar{
text-align: center;
direction: rtl;
height: 50px;
line-height: 40px;
}
.alert_counter:not(:empty) {
    position: relative;
    top: -7px;
    background-color: rgba(212, 19, 13, 1);
    color: #fff;
    border-radius: 3px;
    padding: 1px 3px;
    font: 9px Verdana;
} 
h1 a{color:#fff;}

#containera .dataa ul li,#container .data ul li{
list-style: none;
margin: 5px 0 5px 0;
color: #000;
}

#containera .paginationa,#container .pagination{
width: 100%;
height: 25px;
padding: 5px;
line-height: 10px;
}
#containera .paginationa ul li,#container .pagination ul li{
list-style: none;
float: left;
border: 2px solid var(--light-gray);
padding: 2px 6px 2px 6px;
margin: 0 3px 0 3px;
border-radius: 4px;
color: var(--primary-light);
}
#containera .paginationa ul li:hover,#container .pagination ul li:hover{
border: 0;
padding:5px;
background-color: var(--medium-gray);
cursor: pointer;
}

input.go_button
{
float: left;
border: 1px solid #f2f9fe;
padding: 2px 6px 2px 6px;
margin: 0px;
border-radius: 4px;
color: #06679c;
background-color: #f2f9fe;
position: absolute;
font-size: 8pt;
height: 18px;
line-height: 10px;
}
input.goto,input.goto1,input.goto2,input.goto3,input.goto4{
margin: 0px;
margin-left:2px;
height:18px; 
line-height: 10px;
width: 30px;
padding: 1px 6px;
background: #fff; 
border:1px solid #94B8DB;
border-radius: 4px; /* CSS3 */
vertical-align: top;
}
.total
{
float:right;color:#999;
}
img.Mgz{
width:200px;
height:250px;
}
img.enlarge{
max-height:600px;
max-width:600px;
}
.free{
font-size: 8pt;
font-style: italic;
color: #fff;
padding: 0px 4px 2px 4px;
border-radius: 15px;
background: #176815;
background: -webkit-linear-gradient(#176815, #63dd36);
background: -o-linear-gradient(#176815, #63dd36);
background: -moz-linear-gradient(#176815, #63dd36);
background: linear-gradient(to right,#176815, #63dd36);
}
.seedbox{
font-size: 8pt;
font-style: italic;
color: #fff;
background: #2b8bf6;
padding: 1px 6px 3px 5px;
border-radius: 15px;
display: none;
}
    /***Style the unordered list with the class 'enlarge'***/
    ul.enlarge{
    list-style-type:none; /*remove the bullet point*/
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    font-size: 100%;
    margin: 0;
    outline: 0 none;
    padding: 0;
    vertical-align: baseline;
	font: inherit;
	display: inline-block;
    }
ul.enlarge li{
	display: inline-block;
	position: relative;
	z-index: 0;
	padding: 1px 0;
}

ul.enlarge span{
position:absolute; 
left: -9999px; 
}

ul.enlarge img{
border-radius: 4px;
box-shadow: 0px 0px 8px rgba(132, 132, 132, 0.75);
padding: 2px;
}


    /***Override the styling of images set in step 3 to make the frame smaller and the background darker***/
    ul.enlarge span img{
    padding: 2px; /*size of the frame*/
    background: #ccc; /*colour of the frame*/
    }

    /***Style the <span> containing the framed images and the caption***/
    ul.enlarge span{
    /**Style the frame**/
    padding: 10px; /*size of the frame*/
    background:#eae9d4; /*colour of the frame*/
    /*add a drop shadow to the frame*/
    box-shadow: 0 0 20px rgba(0,0,0, .75);
    /*give the corners a curve*/
    border-radius:8px;
    }

div.Mgz{
display:inline-block;
height:387px;
margin-bottom: 15px;
width:280px
}
div.Mitem{margin-bottom: 5px;overflow: hidden;white-space: nowrap;}
.Mitemsize{height: 16px;line-height: 16px;margin-bottom: 2px;}
div.Mitemsize img{height: 16px;overflow: hidden;white-space: nowrap;}
div.Mitemfilename{overflow: hidden;white-space: nowrap;text-overflow: ellipsis;padding-right: 2px;padding-left: 2px;color: #0077fc;unicode-bidi: plaintext;}
.Mleech{
color:red;
}
.Mseed{
color:green;
}
/* #########المجله######### */
.mine_bar_search{display: initial;}
.mine_bar_uploaded{color:#74cc74;top: 5px;position: absolute;right: 90px;}
.mine_bar_downloaded{color:#FF7979;top: 5px;position: absolute;right: 10px;}
.top_users1{background: aliceblue;}
.top_users2{display: block;background: #d8e9fb;font-weight: bold;border-bottom: 3px solid var(--light-gray);}
.top_users3{background: #d8e9fb;display: inline-block;font-size: 6pt;display: none;}
.top_users4{clear: both;font-size: 8pt;background: #d8e9fb;}
.top_users5{background: aliceblue;}
.top_users6{background: #d8e9fb;display: inline-block;font-size: 6pt;}
.top_users7{display: inline-block;}
.top_users7:nth-of-type(odd),
.top_users2:nth-of-type(even) {
    background-color: var(--white);
	width: 100%;
}
.top_users7:nth-of-type(even),
.top_users2:nth-of-type(odd) {
    background-color: var(--light-gray);
}

.listing_cat_btn{float: right;display: inline-block;background-color: rgb(15, 112, 163); margin-right: 10px; padding: 2px 15px; border-radius: 3px;}
.listing_cat_btn_act,.listing_tag_btn_act{background-color: rgb(24, 53, 68) !important;}
.listing_tag_btnt{float: right;display: inline-block;background-color: rgb(15, 112, 163); margin-right: 10px; padding: 0px 8px; border-radius: 3px;}
.listing_cat_btn a,.listing_cat_btn_act a,.listing_tag_btnt a{color: #fff;}
/* #########اكثر الملفات سيد######### */
table.topseeded{
text-align:right;
color:rgba(0, 0, 0, 0.5);
background: #cdddee;
}
.topseeded tr:nth-child(odd){ background-color:#f2f9fe;}
.topseeded tr:nth-child(even){ background-color:#dbe9fb;}
.latest_comments tr:nth-child(odd){ background-color:#dbe9fb;}
.latest_comments tr:nth-child(even){ background-color:#f2f9fe;}
td.topgreen a:link,td.topgreen a:active,td.topgreen a:visited,td.topgreen a:hover  {  color: green; text-decoration:none;}
td.topred a:link,td.topred a:active,td.topred a:visited,td.topred a:hover  {  color: red; text-decoration:none;}

/* #########اكثر الملفات سيد######### */

/* #########افضل اعضاء لهذا الشهر######### */
table.topusers{
background-color: #f2f9fe;
text-align:right;
color:black;
line-height: 16px;
}
tr.topusers:nth-child(odd)		{ background-color:#f2f9fe; }
tr.topusers:nth-child(even)		{ background-color:#d8e9fb; }
td.sizefont{
font-size:7.5pt;
width: 50px;
text-align:center;
}
td.smallfont{
font-size:6.3pt;
line-height: 11px;
}
/* #########افضل اعضاء لهذا الشهر######### */
div.usr_details_awards{padding-left: 5px;display: inline-block;}
img.awards{height: 25px;width: 20px;}
#Block64{background: #f2f9fe;}
div.online  {padding-top: 4px;}
div.online a:link  {display: inline-block;text-align:center;font-size: 13px;}
.online_right{color:#06679c;float:right;}
.online_left{color:#06679c;float:left;}
.red_flag{padding: 7px 11px;}


#q-search_f{
	display: inline-block;
}

.q_search {
    width: 100%;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
	height: 30px;
	right: 0px;
	top: 8px;
	position: fixed;
}
.search_img{
position: fixed;
left: 5px;
top: 10px;
}




/* Dropdown button on hover & focus */
.search-dropbtn:hover, .search-dropbtn:focus {
    background-color: #3e8e41;
}

/* The container <div> - needed to position the dropdown content */
.search-dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.search-dropdown-content,.login-dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 300px;
    z-index: 1;
	top: 0;
}


#Block34{display: none;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;visibility: visible;} 
.hide {visibility: hidden;} 

#login_tab_u{
    position: fixed;
    right: 0;
    width: 32%;
	height: 27px;
	top: 9px;
}
#login_tab_p{
    position: fixed;
    width: 30%;
    right: 32%;
	height: 27px;
	top: 9px;
}
#login_tab_b{
    position: fixed;
    width: 50px;
    right: 62%;
	height: 27px;
	top: 9px;
}


#main {
display:block; 
width:100%;
margin: 0px auto;
border-radius:3px;
overflow: hidden;
position: relative;
background-color: transparent;
}
/* #### free torrents ####*/
div.pagination {
	padding: 3px;
	margin: 3px;
	width: 100%;
	
}

div.pagination a {
	padding: 2px 5px 2px 5px;
	margin: 2px;
	border: 1px solid #006699;
	text-decoration: none;
	color: #006699;
}
div.pagination a:hover, div.pagination a:active {
	border: 1px solid #006699;
}
div.pagination span.current {
	padding: 2px 5px 2px 5px;
	margin: 2px;
	border: 1px solid #006699;
	font-weight: bold;
	background-color: #006699;
	color: #FFF;
	}
	div.pagination span.disabled {
		padding: 2px 5px 2px 5px;
		margin: 2px;
		border: 1px solid #EEE;
	
		color: #DDD;
	}
	input.names {
		padding: 2px 5px 2px 5px;
		margin: 2px;
		border: 1px solid #9AB4CB;
		background-color: #9AB4CB;
		text-align:center;
		font-weight: bold;
	}
	span.names {
		padding: 2px 5px 2px 5px;
		margin: 2px;
		border: 1px solid #006699;
		background-color: #006699;
		color: #fff;
		text-align:center;
	}
/* #### free torrents ####*/
.vote-count{padding: 10px;vertical-align: top;display: inline;}
.upvote{vertical-align: top;background: transparent;border: 0;background-image: url( 'images/up_vote.png');height: 24px;width: 24px;}
.downvote{vertical-align: top;background: transparent;border: 0;background-image: url( 'images/down_vote.png');height: 24px;width: 24px;}
.upvoted{vertical-align: top;pointer-events: none;background: transparent;border: 0;background-image: url( 'images/upvoted.png');height: 24px;width: 24px;}
.downvoted{vertical-align: top;pointer-events: none;background: transparent;border: 0;background-image: url( 'images/downvoted.png');height: 24px;width: 24px;}
.blue_button ,#gift_pay {cursor: pointer;margin: 0px 2px 5px;border-radius: 2px;display: inline-block;font-weight: bold;color: #FFF;background-color: #01A1E3;text-align: center;padding: 6px 15px;border: 1px solid #01A1E3;}
.blue_button:hover,#gift_pay:hover {background-color:#0F70A3;}
.blue_button a:link,.blue_button a:visited{color: #FFF;}


div.tags {
	padding: 2px 4px;
	background-color: transparent;
	border: 0;
	text-align: inherit;
}
div.tags span.tag {
	display: inline-block;
	background-color: rgb(11, 139, 206);
	color: #fff;
	padding: 1px 4px;
	margin: 1px;
	border-radius: 4px;
	font-size: 10px;
}
div.tags span.tag a {
  color: inherit;   
  text-decoration: none;
}
div.tags span.tag a:hover {
  text-decoration: underline;
}

.tag-container {
  border: 1px solid #ccc;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  cursor: text;
}

.tag {
  background-color: var(--light-gray);
  padding: 4px 8px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.tag .remove-tag {
  margin-left: 5px;
  color: #888;
  cursor: pointer;
  font-weight: bold;
  color: red;
}

#tag_input {
  flex: 1;
}
embed[type="application/x-shockwave-flash"]{max-width: 500px;width: 100%;}

/* #### rss ####*/
div.feedEntryContent img {max-width: 650px;width: 100%;}
/* #### rss ####*/

.latest_comments td,#Emaz_Tlink_v{word-break: break-all;}
.upload_fom input[type="text"]{max-width: 700px;width: 100%;}
.top_{top: 45px !important;}
#gold_member_url2,#forum_url2{display: none;}
@media only screen and (min-width: 801px) and (max-width: 982px) {
	.mine_bar_uploaded,.mine_bar_downloaded{display: none;}
}
@media only screen and (min-width: 751px) and (max-width: 800px) {
	#main {max-width: 100vw;font-size: 0.8rem;}
	div.Mgz{width:180px;height: 370px;}
	img.Mgz {width: 170px;height: 270px;}
	div.listing_div1 {width: 220px;}
	img.listing_poster {height: 320px;width: 220px;}
	.mine_bar_uploaded,.mine_bar_downloaded{display: none;}
}
@media only screen and (min-width: 801px) and (max-width: 900px) {
	#main {max-width: 100vw;}
	div.Mgz{width:180px;height: 370px;}
	img.Mgz {width: 170px;height: 270px;}
	div.listing_div1 {width: 250px;}
	img.listing_poster {height: 320px;width: 230px;}
}
@media only screen and (min-width: 901px) and (max-width: 969px) {
	#main {max-width: 100vw;}
	div.Mgz{width:180px;height: 370px;}
	img.Mgz {width: 170px;height: 270px;}
	div.listing_div1 {width: 290px;}
}
@media only screen and (min-width: 970px) and (max-width: 1023px) {
	#main {max-width: 100vw;}
	div.Mgz{width:180px;height: 370px;}
	img.Mgz {width: 170px;height: 270px;}
	div.listing_div1 {width: 300px;}
}
@media only screen and (min-width: 1024px){
	#main {max-width: 100vw;}
	div.Mgz{width:225px;height: 450px;}
	img.Mgz {width: 210px;height: 310px;}
	div.listing_div1 {width: 300px;}
}
@media only screen and (min-width: 1136px){
	#main {max-width: 100vw;}
	div.Mgz{width:251px;height: 450px;}
	img.Mgz {width: 235px;height: 320px;}
	div.listing_div1 {width: 350px;}
}		
@media only screen and (min-width: 1280px){
	#main {width:1260px;}
	.mainbigL,.mainbigR{width:190px;}
	div.Mgz{width:287px;height: 450px;}
	img.Mgz {width: 250px;height: 350px;}
	div.listing_div1 {width: 400px;}
}




					   

					   


					   
				   

					   


.fb_iframe_widget iframe {left: 0px;}

/* #### userdetail ####*/

      .tabs {
        float: none;
        list-style: none;
        position: relative;
        padding: 0;
		display: inline-block;
      }
      .tabs li{
        float: right;
      }
      .tabs a:link,.tabs a:visited {
          display: block;
          padding: 2px 18px;
          border-radius: 2px 2px 0 0;
          color: #fff;
          font-weight: normal;
          cursor: pointer;
          position: relative;
          top: 3px;
          -webkit-transition: all 0.2s ease-in-out;
          -moz-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
		  background-color: #3788c9;
		  margin-right: 2px;
		  margin-bottom: 5px;
      }
      .tabs a:hover {
        top: 0;
		background: #06679c;
      }
       
      .tabs_active a:link ,.tabs_active a:visited ,.tabs_active a:hover {
        color: #fff;
        top: 0;
		display: block;
		background: #06679c;
      }
       

.fri-div {
display: inline-block;
  height: 150px;
  width: 150px;
  border: 1px solid var(--light-gray);
  margin: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 15px 5px 5px 5px;
}
.fri-img-div {
display: inline-block;
}
.fri-img{
height: 100px;
width: 100px;
border-radius: 4px;
}
.fri-user-div{display: block;margin-top: 5px;font-size: 14px;}
/* #### userdetail ####*/
					   
